gpt4 book ai didi

html - 中间有单词的水平线的CSS技术

转载 作者:IT老高 更新时间:2023-10-28 11:03:07 26 4
gpt4 key购买 nike

我正在尝试制作一条中间有一些文字的水平线。例如:

------------------------我的标题在这里--------- --------------------

有没有办法在 CSS 中做到这一点?显然没有所有的“-”破折号。

最佳答案

这大致是我的做法:通过在包含 h2 上设置 border-bottom 然后给出 h2 一个较小的 line-height。然后将文本放入具有非透明背景的嵌套 span 中。

h2 {
width: 100%;
text-align: center;
border-bottom: 1px solid #000;
line-height: 0.1em;
margin: 10px 0 20px;
}

h2 span {
background:#fff;
padding:0 10px;
}
<h2><span>THIS IS A TEST</span></h2>
<p>this is some content other</p>

我只在 Chrome 中进行了测试,但没有理由它不应该在其他浏览器中运行。

JSFiddle: http://jsfiddle.net/7jGHS/

关于html - 中间有单词的水平线的CSS技术,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5214127/

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