gpt4 book ai didi

css 带边距设置的自动换行问题

转载 作者:太空宇宙 更新时间:2023-11-04 07:26:34 25 4
gpt4 key购买 nike

我有一个脚本可以从 MySQL 表中生成数据行。如果文本(数据)比可用空间长,则文本换行。很好,但是当文本被换行时,换行上的边距将被忽略。

代码:

<div class="TabelText"><?php echo $row_Audits['SeqText'];?></div>

.TabelText {
font-family: Tahoma, Geneva, sans-serif;
font-size: 12px;
color: #950000;
margin-left: 10px;
}

结果:

   0401 Bathroom Door & Frame (Inside 
and Outside)

有没有办法产生这样的结果:

0401 Bathroom Door & Frame (Inside 
and Outside)

非常感谢您的宝贵时间。

最佳答案

使用这个显示:inline-block;

.TabelText {
font-family: Tahoma, Geneva, sans-serif;
font-size: 12px;
color: #950000;
margin-left: 10px;
display: inline-block
}

关于css 带边距设置的自动换行问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49834566/

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