在 DIV 中,我放了段落,但是当文本比 div 长时,它不会换行而是在 DIV 之外。我尝试使用: -moz-hyphens:auto; -ms-hyphens:auto; -webkit-hyphens:auto; hyphens:auto; word-wrap:break-word;
但它不起作用。有什么建议吗?
这是div的代码:
<div id="content">
<p id="test">tfufygigighfetefddddddddddddsssssssssssssssssssssssssssssssssssssssssssfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff</p>
</div>
div的css代码:
#content {
float:left;
position:absolute;
background-color:#D4D3D0;
height:500px;
width:80%;
}
和段落的css:
p.test {
-moz-hyphens:auto;
-ms-hyphens:auto;
-webkit-hyphens:auto;
hyphens:auto;
word-wrap:break-word;
}