html 如何使用css在网页中添加背景图片

xtupzzrd  于 2022-12-09  发布在  其他
关注(0)|答案(2)|浏览(156)

我们将使用哪个标签和css来添加背景图像以及如何重新制作它的大小全长我已经尝试过在html的head部分background-image中使用外部css:URL();

u3r8eeie

u3r8eeie1#

您有两个选项:在CSS中创建它或阅读w3school中的文档。
例如:

<html>
<head>
<style>
   body {
    background: url(https://cdn.urldecoder.org/assets/images/url-fb.png);
    background-repeat: no-repeat;
    background-size: 100% 100vh;
  </body>
</head>
<body>

<p>hello</p>

</body>
2nbm6dog

2nbm6dog2#

<html>
<body>
<style>
    body {
      background: url(# write the address of image);
      background-size: 100%;
    }
</style>

<p>HOPE IT HELPS !</p>
</body>

相关问题