body {
  background: url("img_tree.png") no-repeat fixed 50% 50%/cover #ffffff ;
}

等价于
body {
  background-image: url("img_tree.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 50% 50%;  
  background-size: cover;   
  background-color:#fff;
}
 
posted on 2017-10-08 17:40  幽幽冷瞳  阅读(1767)  评论(0)    收藏  举报