如何让img作为html的body背景图
时间: 2024-05-07 20:17:45 浏览: 58
您可以将以下代码插入到您的HTML文件的`<head>`标签中,将`img`标签的`src`设置为您想要作为背景的图像路径。
```
<style type="text/css">
body{
background-image: url('img/background.jpg');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
```
这将使图像适应整个屏幕,并确保它不会重复并固定在背景中。
阅读全文