<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type='text/css'>
.box{
width:600px;
height:500px;
font-size:20px;
color:#fff;
background-color:red;
background-image:url("img/3.jpg");
background-repeat:no-repeat;
background-repeat:repeat;
background-repeat:repeat-x;
background-repeat:repeat-y;
background-repeat:no-repeat;
background-position:left top;
background-position:left center;
background-position:left bottom;
background-position:center top;
background-position:center;
background-position:center bottom;
background-position:right top;
background-position:right center;
background-position:right bottom;
}
</style>
</head>
<body>
<div class="box">测试
</div>
</body>
</html>