如何在div中进行文本换行,这样即使是一个长的单词也不仅会包裹很好的单词?我需要js来做这个吗?
答案 0 :(得分:3)
<div style=”word-wrap: break-word”>Here is some content for the div element</div>
发现了类似的问题:How to word wrap text in HTML?
参考文献:
http://www.css3.com/css-word-wrap/
http://www.1keydata.com/css-tutorial/wrap.php
http://bytes.com/topic/html-css/answers/627827-how-wrap-text-css
答案 1 :(得分:0)
使用css你可以实现
word-wrap:break-word
风格
div {
word-wrap: break-word;
}
HTML
<div>aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</div>
答案 2 :(得分:0)
你可以在你的css中使用word-wrap: break-word;
作为div。