gpt4 book ai didi

html - div中的全尺寸背景图片?

转载 作者:行者123 更新时间:2023-11-28 12:28:11 24 4
gpt4 key购买 nike

我想要一个全尺寸的背景图片,放在一个 div 中。 div 是最后一个元素,所以我希望它填充到页面底部。到目前为止,我有这段代码,它会填充到两侧,但是将高度更改为 100% 会使它消失,而且我似乎无法让它填充页面。

.launch {
background: url('Images/launchBackground.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

最佳答案

没有看到您的 HTML,您是否尝试过:

background-image: url('Images/launchBackground.jpg')

也可以尝试手动设置:

.launch {
top: 0px;
left: 0px;
min-height: 100%;
min-width: 100%;
position: fixed;
}

关于html - div中的全尺寸背景图片?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18411555/

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