我在php中编码通知,它可以工作,但看起来像这样......
我没有添加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>";
我该如何解决这个问题?
答案 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>";