gpt4 book ai didi

html - 如何让背景图片完美适配页面

转载 作者:太空宇宙 更新时间:2023-11-04 12:14:56 25 4
gpt4 key购买 nike

图片没有完美贴合当前页面,如何让背景图片完美贴合页面

 .background-image {
background-image: url('camera.jpg');
background-size: cover;
display: block;
height: 800px;
left: -5px;
top:-5px;
bottom:-5px;
right: -5px;
position: fixed;
z-index: 1;
margin:0px auto;
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}

我试过了,但是不能和模糊一起使用

background: url(images/bg.jpg) no-repeat center center fixed; 

http://jsfiddle.net/vj8skms4/

最佳答案

您缺少背景位置属性;
所以,要使图像在水平溢出时垂直居中,您应该添加:

 background: no-repeat center center fixed;

here's a fiddle

关于html - 如何让背景图片完美适配页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28806985/

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