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

问题描述 投票:0回答:3

我们将使用哪个标签和CSS来添加背景图像以及如何重新制作它的全长尺寸 我尝试在 head 部分背景图像的 html 中使用外部 css: url() ;

html image styles head
3个回答
1
投票

您有两个选择:在 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>


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

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

0
投票

body{background-image:url("输入您的图片位置");}

© www.soinside.com 2019 - 2024. All rights reserved.