gpt4 book ai didi

css - Bootstrap 文本元素,文本后面有一行

转载 作者:行者123 更新时间:2023-12-05 01:32:40 25 4
gpt4 key购买 nike

我希望创建文本标题,在文本后面有一条线以填充容器的整个宽度,如下例所示:

例子:

enter image description here

实际的文本本身会在它周围有一个白框,以挡住该行。

.divider-text {
height: 1px;
width: 100%;
display: inline;
overflow: hidden;
background-color: #e5e5e5;
}

此处的代码使用 #e5e5e5 颜色填充整个文本容器。

最佳答案

考虑以下标记和 CSS

.heading-1{
position:relative;
text-align: center
}
.heading-1:before {
content: "";
display: block;
border-top: solid 2px #bebebe;
width: 100%;
height: 2px;
position: absolute;
top: 50%;
z-index: 0;
}
.heading-1 span {
background: #fff;
padding: 0 10px;
position: relative;
z-index: 1;
}
<h1 class="heading-1"><span>Centered Text</span></h1>

关于css - Bootstrap 文本元素,文本后面有一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32769825/

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