
如下图:
需求:
1. 如图
2. 可以从body标签开始。
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style>
#content {
overflow: hidden;
}
.column-left {
float: left;
width: 200px;
min-height: 500px;
}
.column-right {
margin: 25px 25px 25px 225px;
min-height: 500px;
}
</style>
</head>
<body>
<div id="header" style="height: 50px; background: blue;"> </div>
<div id="content">
<div class="column-left" style="background-color: purple;"> </div>
<div class="column-right" style="background-color: yellow;"> </div>
</div>
</body>
</html>