gpt4 book ai didi

html - 背景图像不可见 Css

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

我添加了背景图片,但它在页面中不可见。

这是我尝试过的:

CSS:

div{


background: url(http://patentimages.storage.googleapis.com/CN103289961A/CN103289961AD00172.png) no-repeat center center fixed;
-webkit-background-size: contain;
-moz-background-size: contain;
-o-background-size: contain;
background-size: contain;
vertical-align: middle;
background-position: center;
}

Demo Link

最佳答案

这是因为div没有固定或定义的宽度和高度。

background: url(http://patentimages.storage.googleapis.com/CN103289961A/CN103289961AD00172.png) no-repeat center center fixed;
-webkit-background-size: contain;
-moz-background-size: contain;
-o-background-size: contain;
background-size: contain;
vertical-align: middle;
background-position: center;
width: 500px;
height: 500px;
}

工作 link

关于html - 背景图像不可见 Css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36095183/

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