gpt4 book ai didi

css - 横幅未完全覆盖顶部

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

我想让我的横幅完全填满网站的顶部,我该怎么做?如图所示,有一些缝隙。这是我的 CSS:

  <body>
<div id="headerbanner"></div>
<div class="container">
</div>
</body>

body{
background-image: url("../IMAGES/mountain1.jpg");
background-repeat: no-repeat;
background-size: cover;
}

#headerbanner{
height: 70px;
background-color:black;
background-attachment: fixed;
background-position: center top;
}

enter image description here

最佳答案

很难确定确切的问题,因为您没有提供详细信息、上下文或代码,但我认为问题在于您的背景图片没有覆盖容器。

试试下面的 CSS 规则

background-size: cover;

您的新 CSS 将是:

#headerbanner {
height: 70px;
background-color:black;
background-attachment: fixed;
background-position: center top;
background-size: cover;
}

这应该拉伸(stretch)背景图像以填充容器,同时保持宽高比。

关于css - 横幅未完全覆盖顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44804174/

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