日期:2014-05-17 浏览次数:20649 次
<!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>layout</title>
<style type="text/css">
.container {
width: 100%;
min-height: 500px;
}
.row {
width: 100%;
overflow: hidden;
}
.col {
float:left;
}
.header {
height: 50px;
width: 100%;
background-color:#666666;
}
.menu {
width: 20%;
background-color: #999999;
height: 200px;
}
.content {
width: 80%;
background-color: #CCCCCC;
height: 200px;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col header"></div>
</div>
<div class="row">
<div class="col menu"></div>
<div class="col content"></div>
</div>
</div>
</body>
</html>