📜  固定和可滚动的画廊列代码 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:34.228000             🧑  作者: Mango

代码示例1
body {
  background-image: url("img_tree.gif");
  
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  
  background-size: cover;
}