演示代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
body{
background-image: url(bj.jpg);
/* background-repeat: no-repeat; */
background-repeat: repeat-y;
}
/* div{
width: 500px;height: 200px;line-height: 200px;
background-image: url(bj.jpg);
} */
</style>
</head>
<body>
<!--
背景图片:
1,图片路径可相对路径或绝对路径
2,默认值none
3,背景颜色和背景图片可以同时设置
背景重复:
1,默认值repeat,重复
2,no-repeat,不重复
3,repeat-x,横向水平重复
4,repeat-y,纵向垂直重复
-->
<!-- <div>
我要自学
</div> -->
</body>
</html>