<body>
<div class="header">
<nav>
Your navigation content here
</nav>
</div>
<div class="header-overlay"></div>
<div class="content">
Your main content here
</div>
//css file//
header-overlay {
position: sticky;
top: 0;
height: 60px; /* Adjust the height of your header */
background-color: rgba(0, 0, 0, 0.5); /* Adjust the color and transparency
*/
z-index: 1;
}
.content {
background: radial-gradient(ellipse at top left, #f06, #00f);
}
1条答案
按热度按时间w6lpcovy1#
这里的z索引值确保覆盖层在标题下方,径向渐变背景应用于.content div,确保它不会受到标题的影响。在u给予尝试之前,我已经使用了这个
字符串