<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>背景</title>
</head>
<style>
p{
background-color: yellow;
padding: 15px;
margin: 15px;
}
body{
background-image: url("img/img/logo.png");
background-repeat: repeat-x;
background-position: 50% 500px;
}
</style>
<!--
padding内边距
margin外边距填充
background-image背景图片引用
background-repeat当前背景是否重复
no-repeat选择不重复
repeat-x选择横向重复
repeat-y选择纵向重复
background-position选择背景位置
center居中
background-position:如果直接进行位置赋值移动的话,当前第一个参数代表x轴进行移动
-->
<body>
<p>春眠不觉晓</p>
</body>
</html>
day4(9.10)背景
最新推荐文章于 2025-06-02 15:44:20 发布