gpt4 book ai didi

html - 将文本放在
的中间

转载 作者:行者123 更新时间:2023-11-27 23:33:12 25 4
gpt4 key购买 nike

基本上,我希望在我的文本后面有一个 hr,我的文本将在它的中间。

这是一些示例标记:

<div class="test">
<hr class="middle-line"/>
Some Text
</div>

.test {
text-align: center;
}

hr.middle-line {
width: 0px;
height: 100px;
z-index: -1;
}

fiddle 链接; https://jsfiddle.net/hLh55t7p/

最佳答案

你可以像这样使用绝对定位:

.test {
text-align: center;
position: relative
}

hr.middle-line {
width: 0px;
height: 100px;
z-index: -1;
}
.test p{
position: absolute;
text-align: center;
top: 0;
width: 100%
}
<div class="test">
<hr class="middle-line"/>
<p>Some Text</p>
</div>

关于html - 将文本放在 <hr> 的中间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34952960/

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