-1

The max width is being ignored when are are no spaces in between words. Is there any way to override, or fix this?

div {
  border: 1px solid black;
  max-width: 100px;
}
<div>
  testtesttesttesttesttesttesttesttest
</div>
misterManSam
  • 24,303
  • 11
  • 69
  • 89
frosty
  • 2,559
  • 8
  • 37
  • 73

1 Answers1

1

Try the word-wrap css property.

word-wrap: break-word
SmootQ
  • 2,096
  • 7
  • 33
  • 58