码迷,mamicode.com
首页 > 其他好文 > 详细

background-attachment:fixed不兼容性

时间:2018-02-12 16:42:17      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:ack   pat   back   over   attach   targe   value   pos   .com   

ios系统和某些移动端background-attachment:fixed不兼容性,没有任何效果,但可以hack一下就可以了,代码如下:

ps:想在哪个标签加背景,可以在它class后:before.

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

background-attachment:fixed不兼容性

标签:ack   pat   back   over   attach   targe   value   pos   .com   

原文地址:https://www.cnblogs.com/xuniannian/p/8444526.html

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