css-全屏背景图片

一般登录页首页都会做成一张背景大图铺满全屏,这种需求很多,但如何实现兼容一直困扰我。

暂时这种设置是我能使用的最好的方式,但还是会丢失部分图片元素,如果有更好的方法欢迎评论提出。

position: fixed;
left:0;
right:0;
top: 0;
bottom: 0;
background: url('./../../assets/baseImg/home_bg.jpg') no-repeat center center fixed;
background-size:cover;

猜你喜欢

转载自blog.csdn.net/liona_koukou/article/details/84623676