gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-04 02:06:04 25 4
gpt4 key购买 nike

如何设置右侧宽度的适合内容。我使用 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

关于css - 如何在右侧设置宽度适合内容 - 动态内容宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40718530/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com