0
html, body {
  background-image: url("http://getwallpapers.com/wallpaper/full/e/9/4/629789.jpg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

这是我到目前为止的代码。

当浏览器在 lg md 中时,背景图片覆盖整个浏览器,但当调整大小为 sm 或 xs 时,图片被截断,页面底部附近有白色背景。

4

1 回答 1

1

我希望这会有所帮助。

html, body {
  background-image: url("http://getwallpapers.com/wallpaper/full/e/9/4/629789.jpg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width:1024px){
  html, body {
  background-attachment:fixed;
}
}
于 2018-12-29T19:11:35.770 回答