1. 程式人生 > >css中background合寫樣式

css中background合寫樣式

color chm ffffff rep position osi style over bsp

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

css中background合寫樣式