为什么长文字出现在名称下方?

时间:2019-05-27 14:54:29

标签: html css block

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

1 个答案:

答案 0 :(得分:0)

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