gpt4 book ai didi

html - 如何使边框与其中的文字一样大

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

所以它看起来像这样:enter image description here

这是消息的示例代码:

.allMsg {
width: 100%;
}

.self {
border-radius: 1rem;
background-color: #28a745;
text-align: right;
padding-left: 5px;
padding-right: 5px;
margin-left: 5px;
margin-right: 5px;
}

.friend {
text-align: left;
}

#chatWith {
text-align: center;
font-family: sans-serif;
font-size: 40px;
padding-bottom: 15px;
border-bottom: 1px solid #eee;
}
<div class='allMsg'>
<p class='self chatMsg'>Hello</p>
</div>

我怎样才能使边框和里面的文字一样大......我以为填充会起作用但不幸的是它没有所以请帮助我。

最佳答案

如果您将消息包装在另一个元素中,这是可能的。因此,假设所有消息都有一个全 Angular 元素,但 friend 的消息将向左对齐并具有蓝色背景,而您的消息将向右对齐并具有绿色背景。如果您不想过多更改您的标记,最简单的方法是将您的消息包装在一个范围内,而不需要更改 html 中的任何其他内容。

.allMsg {
width: 100%;
}

.self span, .friend span {
border-radius: 1rem;
padding-left: 5px;
padding-right: 5px;
margin-left: 5px;
margin-right: 5px;
}

.self span {
background-color: #28a745;
}

.friend span {
background-color: #2845a7;
}

.self {
text-align: right;
}

.friend {
text-align: left;
}
<div class='allMsg'>
<p class='chatMsg friend'>
<span>hello</span>
</p>
<p class='chatMsg self'>
<span>hy</span>
</p>
<p class='chatMsg friend'>
<span>how are you friend?</span>
</p>
<p class='chatMsg self'>
<span>i'm fine thanks</span>
</p>
</div>

关于html - 如何使边框与其中的文字一样大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48080870/

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