有没有办法调整背景图片的大小 FROM html

is there a way to resize background images FROM html

所以,在 html 中获取背景的正常方法是这样的:

<style>

body {
  background-image: url('https://media.giphy.com/media/itTRilS6MUfqMCQbgZ/giphy.gif');
}

</style>

但现在假设我需要更大的背景,大到 GIPHY 不允许,你不能使用 width=''height='',所以现在有我可以直接从 html?

您在 CSS 中有 background-sizebackground-position 可以玩。

https://developer.mozilla.org/en-US/docs/Web/CSS/background-size https://developer.mozilla.org/en-US/docs/Web/CSS/background-position