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

相关文章:

  • 2021-12-06
  • 2022-12-23
  • 2021-08-03
  • 2022-03-02
  • 2021-12-30
  • 2021-12-16
  • 2021-11-16
  • 2021-05-21
猜你喜欢
  • 2021-08-24
  • 2021-08-14
  • 2021-08-03
  • 2021-04-11
  • 2021-08-14
  • 2022-12-23
  • 2021-09-23
相关资源
相似解决方案