最主要的3行代码

首先:background:url("")请求图片

其次:background-size: cover;设置尺寸为cover

最后:background-attachment: fixed;

 

body{
    background: url("z-images/1.png");
    background-size: cover;
    background-attachment: fixed;
}

效果如下:

背景图平铺手机屏幕背景图平铺手机屏幕

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-02-12
  • 2021-11-19
  • 2022-02-15
  • 2022-12-23
猜你喜欢
  • 2021-12-23
  • 2021-09-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-23
  • 2021-07-05
相关资源
相似解决方案