gpt4 book ai didi

html - CSS:背景颜色扩展到某个元素

转载 作者:太空宇宙 更新时间:2023-11-04 10:49:11 30 4
gpt4 key购买 nike

我有以下代码

<body>
<div style="height: 35%; background-color: black;"></div>
<div id="header">
<div>
<h1>Title</h1>
<h3>Subtitle</h3>
</div>
</div>
<div id="content" class="card">
<div>
<p>
One
</p>
<p>
Two
</p>
</div>
</div>
</body>

理想情况下,我希望页面的顶部是某种颜色(示例中为黑色),并且我希望页眉区域(包含 <h1><h3> 元素)在黑色内部盒子。然后我希望内容的第一段也包含在黑框内。非常类似于这张图片:enter image description here

解决这个问题的最佳方法是什么?

最佳答案

最简单的方法是在 header 上使用绝对定位的伪元素

堆栈片段

body {
background-color: #ddd;
margin: 0;
}

#header {
position: relative;
color: white;
background-color: black;
}
#header::before {
content: '';
position: absolute;
top: 100%;
left: 0;
height: 60px;
width: 100%;
background-color: inherit;
}

#header div {
width: 80%;
margin: 0 auto;
padding: 10px;
}

#content {
position: relative;
width: 80%;
margin: 0 auto;
background-color: white;
}
<div id="header"> 
<div>
<h1>Title</h1>
<h3>Subtitle</h3>
</div>
</div>
<div id="content" class="card">
<div>
<p>
One
</p>
<p>
Two
</p>
<p>
Thre
</p>
<p>
Fou
</p>
</div>
</div>

关于html - CSS:背景颜色扩展到某个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35120584/

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