gpt4 book ai didi

html - 为什么名字下面会出现长文字?

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

enter image description here

我希望消息从名字的右边开始,如果太长则在下面继续

.. 和第二个文本一样,但它很短..

PHP ;

        echo'
<div class="chatpos">
<div class="namec">'.$resnamec['username'].'</div>
<div class="msgc">'.$reschat['message'].'</div>
</div>';
}

CSS;

  .chatpos {
position: relative;
width: 90%;
min-height: 30px;
float: right;
}

.namec {
display: inline-block;
position: relative;
text-align: center;
color: #9aefd8;
text-decoration: none;
font-size: 12px;
font-weight: 600;
padding-left: 2px;
padding-right: 2px;
transition: all 0.3s ease-in-out;
letter-spacing: 0px;
}

.msgc {
display: inline-block;
word-wrap: break-word;
position: relative;
}

最佳答案

msgc 类设置为display: inline-block。相反,它应该设置为 display: inline。像这样:

.msgc {
display: inline;
}

检查 this fiddle看看这是否是您想要的。


事后看来,我认为更可靠的方法是将 msgcnamec 都设置为 display: block。此外,您可以将 namec 设置为 float: left,如下所示:

.namec {
display: block;
float: left;
margin-right: 5px;
color: blue;
}

.msgc {
display: block;
text-align: justify;
}

检查 this updated fiddle .

关于html - 为什么名字下面会出现长文字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56328366/

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