HTML插入背景图片 代码
时间: 2023-07-23 09:41:49 浏览: 167
可以使用以下HTML和CSS代码将背景图片插入到网页中:
```html
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-image: url("background-image.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
</style>
</head>
<body>
<!-- 网页内容 -->
</body>
</html>
```
其中,`background-image` 属性指定背景图片的URL,`background-repeat` 属性指定是否重复显示图片,`background-attachment` 属性指定图片的固定方式,`background-size` 属性指定图片的大小。
阅读全文