gpt4 book ai didi

html - css背景标题图片

转载 作者:行者123 更新时间:2023-11-28 02:03:20 26 4
gpt4 key购买 nike

我的背景图片没有显示。我使用了图片链接,但没有显示。可能是什么问题

.header {
background-image: url("https://www.africa.com/wp-content/uploads/2015/07/Kenya.jpg");
background-attachment: fixed;
background-size: cover;
background-position: center;
}

.overlay{
position: absolute;
min-height: 100%;
min-width: 100%;
left: 0;
top: 0;
background: rgba(244, 244, 244, 0.79);
}
 <header class="header">
<div class="overlay"></div>
</header>

最佳答案

问题是 header 没有高度……​​这应该可以。

.header {
background-image: url("https://www.africa.com/wp-content/uploads/2015/07/Kenya.jpg");
background-attachment: fixed;
background-size: cover;
background-position: center;
height: 300px;
}

.overlay{
position: absolute;
min-height: 100%;
min-width: 100%;
left: 0;
top: 0;
background: rgba(244, 244, 244, 0.79);
}
 <header class="header">
<div class="overlay"></div>
</header>

关于html - css背景标题图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49179511/

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