gpt4 book ai didi

css - 如何让标题在文本后面有一条水平线?

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

我正在构建一个站点,下面是一个模型

enter image description here

因为我使用的是构建 HTML 的内容管理系统,所以我必须使用单个 h3 标记。我希望后面的行具有包含 h3 标记的 div 的宽度。这可能吗?

这是我能得到的最接近的值:http://jsfiddle.net/rmgtq6h6/

h3.line-behind { width: auto; position: relative; text-align: center}
h3.line-behind:after { content: " "; border-top: 3px solid black; position: absolute; width:100%; top: 50%; left: 0; z-index: 1; }

最佳答案

给你:

https://jsfiddle.net/rmgtq6h6/1/

div.line-behind {
width: auto;
position: relative;
text-align: center
}
span {
content: " ";
border-top: 3px solid black;
position: absolute;
width: 100%;
top: 50%;
left: 0;
z-index: -1;
}
h3 {
background-color: #fff;
display: inline-block;
}
}
<div class="line-behind"><span></span>
<h3>Begin My Giving Journey</h3>
</div>

或者看看这里:

http://codepen.io/ericrasch/pen/Irlpm

关于css - 如何让标题在文本后面有一条水平线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29332469/

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