日期:2014-05-16 浏览次数:20810 次
<html>
<head>
<title>hehe</title>
<style type="text/css">
div#a
{
background-color:#F00;
width:50%;
height:500px;
}
div#c
{
background-color:#000;
width:30%;
height:40%;
}
div#b
{
background-color:#0C0;
width:30%;
height:60%;
}
div#d
{
float:right;
background-color:#60C;
margin-left:30%;
width:70%;
height:100%;
}
</style>
</head>
<body>
<div id="a">
<div id="d"></div>
<div id="b">hehe</div>
<div id="c"></div>
</div>
</body>
</html>