我可以让文字适合div吗?
<div>
Hello! This a long text, but I'd like it to fit the div's width
</div>
到目前为止,我已经使用 max-width:100px ,期望将文本换行到新行。但是,到目前为止我得到的是一个长文本出现在其容器上方并且过度填充其他容器。
看起来,仅仅使用max-width是不够的。
感谢您的帮助
答案 0 :(得分:3)
width:100px;
应该这样做,具体取决于div上设置的其他属性。
答案 1 :(得分:3)
如果您使用
个字符而不是空格,则该行会溢出。
另外,检查white-space attribute是否设置为“正常”而不是“nowrap”。