gpt4 book ai didi

html - 如何使用 CSS 模拟
(br 标签)?

转载 作者:技术小花猫 更新时间:2023-10-29 12:56:26 25 4
gpt4 key购买 nike

我这里有下面一行 css 和 html:

CSS:

.top, .title {
font-weight: bold;
}
.bottom, .Content {
}

HTML:

<span class='title'>Title</span>
<br/>
<span class='Content'>Content</span>
<br/><br/>

我想替换 <br/>在 CSS 中使用等效标记,但我正在努力解决它。如果有任何帮助,我将不胜感激。

我试过 margin-bottom、margin-top、line-height,都没有用。

最佳答案

您可以像这样模拟 BR 标签宽度 CSS:

span:after {
content: ' ';
display: block;
}

如果需要在跨度内容之前模拟“br”,请使用选择器“:before”

jsfiddle

关于html - 如何使用 CSS 模拟 <br/>(br 标签)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9185157/

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