日期:2014-05-16 浏览次数:20679 次
<!doctype html>
<html>
<head>
<style type="text/css">
.div1{
border: 1px solid black;
width:500px;
}
.div2{
width:100px;
border: 1px solid blue;
float:left;
height:200px;
}
.div3{
width:100%;
border: 1px solid red;
margin-left:102px;
height:200px;
}
</style>
</head>
<body>
<div class="div1">
<div class="div2">div2</div>
<div class="div3">div3</div>
</div>
</body>
</html>
.div3{
border: 1px solid red;
margin-left:102px;
height:200px;
}