HTML TextArea Break错误

时间:2016-04-25 05:59:43

标签: javascript jquery html css

在我的网站中,我在文本区域中插入没有空格的长文本,然后在<p><div>标签内查看该文本。但是文本dos不会破坏它显示为inline.how can i以适当的间距查看文本。

这是查看textarea的代码

.text_in_status p {
  color: #333;
  font-size: 1.1em;
  font-weight: 400;
    display: block;
    

}
<div className="text_in_status clearfix">
                <p >{this.props.post.text}</p>
              </div>

enter image description here

4 个答案:

答案 0 :(得分:3)

在p标签上使用word-break: break-all;此样式。

答案 1 :(得分:2)

在p tag中使用这个:

word-wrap:break-word;

答案 2 :(得分:1)

$sql_update = "UPDATE table_name SET column_name=RAND()"

答案 3 :(得分:1)

&#13;
&#13;
.text_in_status p {
  color: #333;
  font-size: 1.1em;
  font-weight: 400;
    display: block;
   word-wrap:break-word;
    

}
&#13;
<div className="text_in_status clearfix">
                <p >{this.props.post.textsdsfsddddddddddddddddddddddddddddddddddddddd    dfsfffffffffffffffffffffffffff ddddddddddddddddd}</p>
              </div>
&#13;
&#13;
&#13;