如何在右侧设置宽度适合内容 - 动态内容宽度

How to set fit-content for width in right side - dynamic content width

如何设置适合右侧宽度的内容。我使用 fit-content 宽度值,左侧的所有内容都可以,但右侧内容放在页面中央。我使用这个 CSS 按内容制作动态宽度:

.chat li.right .chat-body {
    margin-right: 60px;
    border: 1px solid $c-grey;
    padding: 10px;
    background-color: whitesmoke;
    border-color: #e3e3e3;
    /*box-shadow: 0 1px 0 #cfcfcf;*/
    border-radius: 2px;
    margin-left: 20%;
    max-width: 80%;
    width: fit-content;
}

这是我的聊天示例: CodePen Example

替换为我的代码。

.chat li.left .chat-body {
    margin-left: 10px;
    border: 1px solid #DDDDDD;
    padding: 10px;
    background-color: whitesmoke;
    border-color: #e3e3e3;
    /*box-shadow: 0 1px 0 #cfcfcf;*/
    border-radius: 2px;
    /* margin-right: 20%; */
    max-width: 80%;
    width: fit-content;
    float: left;
}

.chat li.right .chat-body {
    margin-right: 10px;
    border: 1px solid #DDDDDD;
    padding: 10px;
    background-color: whitesmoke;
    border-color: #e3e3e3;
    /*box-shadow: 0 1px 0 #cfcfcf;*/
    border-radius: 2px;
    /* margin-left: 20%; */
    max-width: 80%;
    width: fit-content;
    float: right;
}

和:

.chat li small.pull-left {
    padding-left: 60px;
    padding-top: 5px; 
    clear:both;   
}
.chat li small.pull-right {
    padding-right: 60px;
    padding-top: 5px; 
    clear:both;
}

Working Demo