请使用XHTML+CSS实现如下所示的网页布局。
页头 | ||
栏目一 |
栏目二 |
栏目五 |
栏目三 | ||
栏目四 |
请使用XHTML+CSS实现如下所示的网页布局。
页头 | ||
栏目一 |
栏目二 |
栏目五 |
栏目三 | ||
栏目四 |
效果
<!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=gb2312" />
<title>无标题文档</title>
<style>
div{
border:1px #CCCCCC solid;
float:left;
}
</style>
<body>
<div style="width:1000px; text-align:center;">
<div style="width:1000px; height:20px; float:left;">top</div>
<div style="width:300px; height:100px; float:left;">div1</div>
<div style=" width:300px; float:left; ">
<div style="float:left; width:200px;">div2</div>
<div style="float:left; width:200px;">div3</div>
<div style="float:left; width:200px;">div4</div>
</div>
<div style="float:left; width:300px; height:100px;">div5</div>
</div>
</body>
</html>