我希望消息从名称的右侧开始,如果它太长,则在下面继续
..喜欢第二个文字,但它很短..
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;
}
