当单词之间没有空格时,将忽略最大宽度

max-width is being ignored when there are no spaces in between words

当单词之间没有空格时,将忽略最大宽度。有什么方法可以覆盖或解决这个问题吗?

div {
  border: 1px solid black;
  max-width: 100px;
}
<div>
  testtesttesttesttesttesttesttesttest
</div>

试试自动换行 css 属性.

word-wrap: break-word