gpt4 book ai didi

html - Z 索引定位无法正常工作

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

我有一个容器,我想让一个 h2 看起来与中心对齐,后面有一条细线。我不能做的是让这条线走到 h2 框后面。无论我尝试什么,它总是越过 h2 框。

这是我需要完成的示例: enter image description here

感谢任何帮助。

<div class="wrapper">
<div class="section-header">
<h2>H2 needs to be centered</h2>
<div class="line-section-header"></div>
</div>
</div>

我使用的 css 是:

h2 {
font-family: 'Open Sans', Arial, sans-serif;
font-family: 20px;
font-weight: 700;
text-transform: uppercase;
width: 140px;
color: #3F3F3F;
background-color: white;
padding: 5px 10px;
border: 1px solid #D3D3D3;
text-align: center;
margin: 0 auto;
z-index: 999;
}


.wrapper {
margin: 0 auto;
width: 980px;
height: 1000px;
background-color: #white;
}

.section-header {
width: 100%;
height: auto;
background-color: white;
float: left;
position: relative;
}

.line-section-header {
width: 100%;
height: 1px;
background-color: #D3D3D3;
margin-top: 15px;
position: absolute;
}

最佳答案

我做了一个样本。检查我的 jsfiddle http://jsfiddle.net/amitv1093/r3arp2m8/

html

<div class="container">

<h2> h2 </h2>
<div class="line"> </div>

</div>

CSS

.container
{
position:relative;
text-align:center;
background:#d9d9d9;
z-index:-99;
padding:12px 0px;
}

h2
{
width:100px;
background:grey;
height:50px;
text-align:center;
margin:0px auto;
line-height:50px;

}

.line
{
position:absolute;
width:100%;
height: 1px;
background: red;
top:50%;
margin:1px 0px;
z-index:-9;

}

关于html - Z 索引定位无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34069434/

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