当前位置: 移动技术网 > IT编程>网页制作>CSS > 使背景图片自动适应浏览器屏幕(代码教程)

使背景图片自动适应浏览器屏幕(代码教程)

2018年03月26日  | 移动技术网IT编程  | 我要评论

用chrome浏览器正常显示。以下为CSS代码:

.auto-picture
{
background-image: url(../img/login-1.png);
background-position: center 0;  
        background-repeat: no-repeat;  
        background-attachment: fixed;  
        background-size: cover;  
        -webkit-background-size: cover;  
        -o-background-size: cover;  
        -moz-background-size: cover;  
        -ms-background-size: cover;  
}

放在<body>标签,chrome浏览器可以正常使用!

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网