【发布时间】:2019-05-27 14:54:29
【问题描述】:
我希望消息从名称的右侧开始,如果它太长,则在下面继续
.. 像第二个文本,但它很短..
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;
}
【问题讨论】:
-
您提供的代码无法复制该问题。请提供显示问题的确切代码