HTML插入背景图

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>背景图片</title>
</head>
<body>
 
<body background="image/1.png" style=" background-repeat:no-repeat ;background-size:100% 100%;
background-attachment: fixed;">
<p><center>我是标题</center></p>
</body>
</html>

background-repeat:no-repeat:设置背景图片的重复样式为不重复,也就是说背景图片不平铺,只显示一张
background-attachment :定义背景bai图片随滚动轴的移动方式
取值: scroll | fixed | inherit
scroll: 随着zhi页面的滚动轴背景图片将移动
fixed: 随着页面的滚动轴背景图片不dao会移动
inherit: 继承初始值: scroll

点赞