gpt4 book ai didi

html - 我似乎无法让我的图像绝对显示在我的页面顶部并覆盖整个页面

转载 作者:行者123 更新时间:2023-11-28 18:01:46 25 4
gpt4 key购买 nike

我的网站有一张背景图片,它确实覆盖了整个页面,但问题是图片被推离了顶部和底部,而不仅仅是底部。

这是我的 HTML:

<img class="background" url="../images/splash.png" />
<div class="wrapper">
test
</div>

这是我的 CSS:

img.background{
position:fixed;
top:0;
width:100%;
height:100%;
z-index:0
}
div.wrapper{
margin-top:0;
position:relative;
z-index:1;
}

最佳答案

img:display:block,否则不会监听widthheight:100%.

更新:

img.background {
position: fixed;
display: block;
width: 100%;
height: 100%;
}

关于html - 我似乎无法让我的图像绝对显示在我的页面顶部并覆盖整个页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20309528/

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