下面的XHtml標記生成圖A所示的頁面。(出於簡單考慮,內容被截短。)
- <body>
- <DIVidDIVid="head">
- <h1>header</h1>
- </DIV>
- <DIVidDIVid="columns">
- <DIVidDIVid="side1">
- <h3>side1</h3>
- <ul>
- <li>Letmenottothemarriageoftrueminds</li>
- <li>Admitimpediments;loveisnotlove</li>
- <li>Whichalterswhenitalterationfinds</li>
- <li>Orbendswiththeremovertoremove</li>
- <li>Oh,no,itisaneverfixedmark</li>
- </ul>
- </DIV>
- <DIVidDIVid="content">
- <h2>maincontent</h2>
- <p>Thatlooksontempests...hisheightbetaken.</p>
- <p>Butbearsitout...alterationfinds.</p>
- <p>Whoseworth'sunknown,...theremovertoremove.</p>
- </DIV>
- <DIVidDIVid="side2">
- <h3>side2</h3>
- <ul>
- <li>Letmenottothemarriageoftrueminds</li>
- <li>Admitimpediments;loveisnotlove</li>
- <li>Whichalterswhenitalterationfinds</li>
- </ul>
- </DIV>
- </DIV>
- <DIVidDIVid="foot">
- <h3>footer</h3>
- <p>Orbendswith...heightbetaken.</p>
- </DIV>
- </body>
下面是將頁面設計為固定寬度布局的CSS代碼。
- body{
- font-family:Verdana,Arial,Helvetica,sans-serif;
- font-size:12px;
- margin:0px;
- padding:0px;
- }
- h2,h3{
- margin-top:0px;
- padding-top:0px;
- }
- DIV#head{
- position:absolute;
- width:750px;
- height:100px;
- left:0px;
- top:0px;
- background-color:#FFFF66;
- }
- DIV#columns{
- position:relative;
- width:750px;
- top:100px;
- background-color:#CCCCCC;
- }
- DIV#side1{
- position:absolute;
- width:150px;
- top:0px;
- left:0px;
- background-color:#FF6666;
- }
- DIV#content{
- position:relative;
- width:450px;
- top:0px;
- left:150px;
- background-color:#999999;
- }
- DIV#side2{
- position:absolute;
- width:150px;
- top:0px;
- left:600px;
- background-color:#00FF66;
- }
- DIV#foot{
- position:relative;
- width:750px;
- clear:both;
- margin-top:100px;
- background-color:#99FFFF;
- }