日期:2014-05-17 浏览次数:20921 次
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <link rel="stylesheet" type="text/css" href="box2.css"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" > <title>类似youku的盒子模型</title> </head> <body> <div class="divout"> <div> <span class="span1"> <font class="font1">youku牛人</font><a href="#">更多牛人</a> </span> <ul class="faceul"> <li><img src="a.jpg"/><br/><a href="#">张三</a></li> <li><img src="a.jpg"/><br/><a href="#">张三</a></li> <li><img src="a.jpg"/><br/><a href="#">张三</a></li> </ul> </div> </div> </body> </html>
body
{
    margin:0 auto;
    width:1000px;
    height:1000px;
    border:1px solid blue;
    font-size:12px;
}
.divout
{
    width:300px;
    height:280px;
    margin-left:10px;
    margin-top:10px;
    border:1px solid gray
}
.faceul
{
    width:250px;
    border:1px solid red;
    list-style-type:none;
    margin-left:30px;
    margin-top:8px;
    padding:0;
    
}
.faceul li
{
    width:40px;
    float:left;
    margin-right:40px;
    border:1px solid blue;
    /*margin-left:40px;*/
    
    text-align:center;
}
.faceul img
{
    width:40px;
    margin-top:2px;
    /*margin-left:2px;*/
    padding-bottom:7px;
    
]
.font1
{
    font-size:6px;
    font-weight:bold;
    /*margin:2px 0px 0px 2px;*/
}
.span1
{
    /*display:block;*/
    background-color:green;
}
.span1 a
{
    margin-top:40px;
    float:right;
    font-size:9px;
}