gpt4 book ai didi

html - 左边有一些文字的一行

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

我正在尝试用左侧的一些文本制作一条水平线。例如:

Like This

如何用CSS实现?

我这样做了但是没有得到预期的结果

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; }

最佳答案

一行可以占据文本留下的空间(fluiiiid),Flexbox的妙用: Codepen

不需要跨度:该行是一个 :pseudo。
布局应该可以使用表格布局(CSS,而不是标记)以获得更好的兼容性,但我不关心 IE8/9。

h2 {
display: flex;
justify-content: stretch;
align-items: baseline;
margin: 0.625rem 0 1.25rem;
line-height: 1.5;
text-transform: uppercase;
color: #444;
}

h2:after {
content: '';
flex-grow: 1;
border-bottom: 1px solid #444;
margin-left: 0.5rem;
}
<h2>work</h2>
<!-- SO 44257291 -->

关于html - 左边有一些文字的一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44257291/

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