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

why long text appears below name?

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

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

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;
}

msgcclass设置为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