首页 > 技术文章 > css中background合写样式

ifworld 2017-10-08 17:40 原文

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;
}
 

推荐阅读