gpt4 book ai didi

css - 如何修复多行显示消息

转载 作者:行者123 更新时间:2023-11-28 19:29:37 25 4
gpt4 key购买 nike

.abc{
white-space:pre-wrap;
}
<label >student</Label>:<span class="abc">He is a good boy </br> he is also kind'</span>

假设我在 Angular 应用程序中用 2 行显示消息,如下所示:LabelStudent:拉姆是个好 child ,他也很善良。

我想要第二行消息,即 He is also kind,应该显示在第一条消息的正下方,而不是标签下方

最佳答案

这可以通过 flexbox 轻松实现.我已经通过 here 复制了一个演示.

HTML:

<div class="container">
<label>student :</label>
<div class="information">
<span>He is a good boy</span>
<span> he is also kind'</span>
</div>
</div>

CSS:

.container {
display: flex;
flex-direction: row;
}

.information {
display: flex;
flex-direction: column;
}

关于css - 如何修复多行显示消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55329424/

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