Ò³Ãæ½á¹¹ header, nav, article, footer { border padding header { width nav { float width height article { float width height footer { clear width header Í·²¿²¿·Ö nav ²Ëµ¥µ¼º½ËµÃ÷²¿·Ö article ÄÚÈÝ˵Ã÷²¿·Ö footer µ×²¿ËµÃ÷²¿·Ö
ÆÕͨhtml ·ÖÀ¸
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>htmlÒ³Ãæ½á¹¹</title>
<style>
#header, #nav, #article, #footer {
border: solid 1px #666;
padding: 5px;
}
#header {
width: 500px;
}
/*×ó±ß²Ëµ¥*/
#nav {
float: left;
width: 60px;
height: 100px;
}
/*Óұ߲˵¥*/
#article {
float: left;
width: 428px;
height: 100px;
}
#footer {
clear: both;
width: 500px;
}
</style>
</head>
<body>
<div>
µ¼º½²¿·Ö
</div>
<div>
×ó±ßÄÚÈÝ
</div>
<div>
ÓÒ±ßÄÚÈÝ
</div>
<div>
µ×²¿
</div>
</body>
</html>
¡¡