拼图.html
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>拼图</title>
<style type="text/css">
*{
padding: 0px;
margin: 0px;
}
.box{
width:604px;
height:454px;
border: 5px solid #aaa;
border-radius: 30px;
margin: 30px auto;
}
.one{
width: 604px;
height: 227px;
background-image: url("images/01.jpg"),url("images/02.jpg"),url("images/03.jpg");
background-position: left,center,right;
background-repeat: no-repeat;
border-radius: 30px 30px 0 0;
}
.two{
width: 604px;
height: 227px;
background-image:url("images/04.jpg"),url("images/05.jpg"),url("images/06.jpg");
background-position: left,center,right;
background-repeat: no-repeat;
border-radius:0px 0px 35px 35px;
}
</style>
</head>
<body>
<div class="box">
<div class="one"></div>
<div class="two"></div>
</div>
</body>
</html>