码迷,mamicode.com
首页 > 移动开发 > 详细

移动端背景无法固定

时间:2017-03-30 13:50:42      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:content   no-repeat   移动端   dex   背景   解决办法   index   滚动   before   

在移动端制作固定背景时(利用fixed)会出现滚动条滚动时,背景图会跟着滚动,;

解决办法就是给body加个伪元素。

body:before {
content: ‘ ‘;
position: fixed;
z-index: -1;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: url(...) center 0 no-repeat;
background-size: cover;
}

移动端背景无法固定

标签:content   no-repeat   移动端   dex   背景   解决办法   index   滚动   before   

原文地址:http://www.cnblogs.com/bobofuns/p/6645335.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!