发表于: 2016-05-14 10:04:14
1 1393
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Document</title>
<style>
#nine{
height:149px;
width:153px;
box-shadow:0 0 6px 0 #f2f2f2;
padding:9px 7px;
box-sizing:border-box;
}
#nine>div{
height:43px;
width:43px;
background-color:#e8830d;
border-radius:3px;
float:left;
margin:1px;
}
</style>
</head>
<body>
<div id="nine">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>
评论