gpt4 book ai didi

html - 如何在 CSS 中为标题创建响应式底部边框?

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

我希望在 CSS 中复制以下设计:

enter image description here

到目前为止,我已经完成了以下工作:

.bb-title::before{
content:'';
position: absolute;
background-color: #7D18FD;
width: 25%;
height: 3px;
bottom: 0;
}
<h2 class='f2 mt4 bb-title relative'>
What people are saying
</h2>

但这不是响应式的。

参见 Codepen .

在标题上实现底部边框的最佳方法是什么,边框始终与标题宽度相同?

最佳答案

按照以下步骤:

.bb-title {
position: relative;
display: inline-block;
}
.bb-title::before {
content: '';
position: absolute;
background-color: #7D18FD;
width: 100%;
height: 3px;
bottom: -5px;
left: 0;
right: 0;
}

关于html - 如何在 CSS 中为标题创建响应式底部边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59453845/

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