我有一些关于我的网站保存在数据库中的信息,但文字太长了。 如何划分行末的文本?
以下是代码:
<div id="art"><!--HERE WILL APPEAR THE TEXT-->
<p id="article"><?php
require('fnc_secon.php');
echo get_article();
?>
</p><!--END-->
</div>
CSS:
#art
{
text-align: left;
position: absolute;
left:10px;
top:50px;
height:425px;
width:410px;
background-color: green;
}
如果我犯了一些错误,感谢您的帮助,对不起我的英语。
答案 0 :(得分:0)
如果内容不是单独打破,您可以使用word-break:break-all;
<强> jsFiddle example 强>
#art {
text-align: left;
position: absolute;
left:10px;
top:50px;
height:425px;
width:410px;
background-color: green;
word-break:break-all;
}