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;
}
原文:http://www.cnblogs.com/ifworld/p/7638012.html