我们将使用哪个标签和CSS来添加背景图像以及如何重新制作它的全长尺寸 我尝试在 head 部分背景图像的 html 中使用外部 css: url() ;
您有两个选择:在 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>
<html>
<body>
<style>
body {
background: url(# write the address of image);
background-size: 100%;
}
</style>
<p>HOPE IT HELPS !</p>
</body>
body{background-image:url("输入您的图片位置");}