<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>京东例子</title>
<style type="text/css">
body{
margin:0px;
padding:0px;
background-color:#f0f3ef;
}
.title{
text-align:center;
font-family:"fzzzh";
color:#222;
}
.container{
/* background-color:red; */
width:1190px;
height:450px;
margin:0 auto;
}
.left,.center,.right{
width:390px;
height:450px;
float:left;
background-color:white;
}
.left{
background-color:transparent;
}
.left,.center{
margin-right:10px;
}
.border{
width:340px;
height:420px;
border:5px solid black;
position:relative;
top:20px;
}
.border img{
position:absolute;
bottom:25px;
left:45px;
}
</style>
</head>
<body>
<h3 class="title">--- 居家优品 ---</h3>
<div class="container">
<div class="left">
<div class="border">
<img src="img/left.jpg" />
</div>
</div>
<div class="center">2</div>
<div class="right">3</div>
</div>
</body>
</html>