是这样的,不知道你是否学习了css,css叫做层叠样式表,它可以完美地让你实现任何的页面布局。
我给你写一下这个布局,你参考一下:
<html lang="zh">
<head>
<title>布局演示</title>
<style type="text/css">
.body{
width:900px;
margin: 0 auto;
}
.left{
height:500px;
width:400px;
float: left;
background-color: #579;
}
.right{
float: left;
width: 500px;
}
.right-top{
height: 300px;
background-color: #871;
}
.right-bottom{
height: 200px;
background-color: #091;
}
</style>
</head>
<body>
<div class="body">
<div class="left">
这里是左侧
</div>
<div class="right">
<div class="right-top">右上</div>
<div class="right-bottom">右下</div>
</div>
</div>
</body>
</html>