<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
*{margin:0;padding:0;}
.main{
    margin:0 auto;
    width:500px;    
    height:500px;
    background-color:orange;
}
.left{
    float:left;
    width:100px;
    height:200px;
    background-color:red;
}
.right{
    margin-left:100px;
    height:200px;
    background-color:blue;    
}
.test{
    float:left;
    background-color:white;    
}
</style>
</head>

<body>

<div class="main">
    <div class="left">sdf</div>
    <div class="right">asdfasdf
        <div class="test">sadfsf</div>
    </div>
</div>


</body>
</html>


当然, 还有几种其他的办法, 自己能懂就好

posted on 2014-01-07 14:15  FreeSpider  阅读(401)  评论(0编辑  收藏  举报