gpt4 book ai didi

php - 包装文本和滚动 div 以显示来自 MySQL 的更多内容

转载 作者:行者123 更新时间:2023-11-30 23:14:14 25 4
gpt4 key购买 nike

这是我的 shoutbox 脚本 -

$result = mysql_query("SELECT * FROM `shoutbox` ORDER BY `id` DESC LIMIT 5");
while($r=mysql_fetch_array($result))
{
$time=$r["time"];
$id=$r["id"];
$message=$r["message"];
$name=$r["name"];
echo "<div style='position:relative;'>";
echo $name."&nbsp;&nbsp;&nbsp;".$message."<br/>".$time."<br/>";
echo "</div>";
}

问题是这段代码没有文本换行,我尝试添加文本换行但没有成功。当我输入没有空格的长文本时,文本会超出 div。我怎样才能解决这个问题?而且,正如您可能已经注意到的那样,我使用 DESC LIMIT 5 将消息数量限制为 5 我想知道如何使 div 可滚动,以便在向下滚动超过 5 条消息时显示较早的消息。

最佳答案

它正在发挥作用,从“Aaron Bennett”处收集

<style>
.wordwrap {
white-space: pre-wrap; /* CSS3 */
white-space: -moz-pre-wrap; /* Firefox */
white-space: -pre-wrap; /* Opera <7 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* IE */
}
</style>

<?php

echo "<div
style='width:150px; height:200px; overflow:auto;' class='wordwrap'>
LongwordLongwordLongwordLongwordLongwordLongwordLongwordLongwordLongwordLongwordLongwordLongwordLongwordLongwordLongwordLongword
</div>";
?>

引用:https://stackoverflow.com/a/1638824/2459296

关于php - 包装文本和滚动 div 以显示来自 MySQL 的更多内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18637334/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com