当我甚至没有添加标签时,我的文字是自动打破的

时间:2015-04-21 20:27:50

标签: php html

我在php中编码通知,它可以工作,但看起来像这样......

enter image description here

我没有添加br标签,为什么TEXT会破坏?

这是代码行......

echo "<div class='entire' style='width:100%;height:200px;'><div class=" . $row["not_type"]. "  style='height:50px;width:50px';>" . $row["from_user_id"]. "  " . $row["from_username"]. " " . $row["not_text"]. "      " . $row["post_id"]. "" . $row["post_content_url"]. " " . $row["post_id"]. "<br>";

我该如何解决这个问题?

2 个答案:

答案 0 :(得分:1)

默认情况下,文本将换行以适合容器。如果您不希望文本换行集white-space: nowrap。如果您随后获得滚动条,则可以添加overflow: hidden

您的容器只有50px宽。

答案 1 :(得分:0)

你错过了回声的</div>

试试这个:

echo "<div class='entire' style='width:100%;height:200px;'><div class=" . $row["not_type"]. "  style='height:50px;width:50px';>" . $row["from_user_id"]. "  " . $row["from_username"]. " " . $row["not_text"]. "      " . $row["post_id"]. "" . $row["post_content_url"]. " " . $row["post_id"]. "</div><br>";