HTML <div>標籤
div是塊級元素,主要用作大的框架佈局,比如將網頁劃分左中右結構。
也就是說網頁的骨架主要通過div來架設的,而網頁的血肉則是有span、p或者ul等元素完成。
關於塊級元素可以參閱CSS 塊級/內聯元素一章節。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> body{background:#ffcc99;} #header { margin:0px auto; width:1000px; height:100px; background:#FFFFCC; } #menu { margin:5px auto; width:1000px; height:30px; line-height:30px; color:#99FF99; font-weight:bold; font-size:14px; background:#6699FF; } #content { margin:5px auto; width:1000px; height:400px; background-color:#cccccc; } .content_left { float:left; width:200px; height:400px; background:#cc99ff; } .content_center { float:left; width:590px; height:400px; margin-left:5px; background:#cc99ff; } .content_right { float:left; width:200px; height:400px; margin-left:5px; background:#cc99cc } #footer1 { margin:5px auto; background-color:#5185E6; color:#FFFFFF; border-top:0px solid #F7F7F6; height:30px; line-height:30px; width:1000px; padding:5px 0; text-align:center; } #footer2 { margin:5px auto; background-color:#3333FF; color:#FFFFFF; border-top:0px solid #F7F7F6; height:30px; line-height:30px; width:1000px; padding:5px 0; text-align:center; } a{text-decoration:none;} </style> </head> <body> <div id="header">頁面頭部</div> <div id="menu"> </div> <div id="content"> <div class="content_left">左側欄</div> <div class="content_center">中間內容</div> <div class="content_right">右側欄</div> </div> <div id="footer1">滾動資訊欄</div> <div id="footer2">底部</div> </body> </html>
相關文章
- html中p標籤內為何不能巢狀div標籤?HTML巢狀
- html標籤種類很多,為什麼不都用div?HTML
- html標籤HTML
- HTML <a> 標籤HTML
- HTML標籤(基本標籤的使用)HTML
- 前端html:標籤前端HTML
- 01 HTML標籤HTML
- html排版標籤HTML
- HTML <figcaption> 標籤HTMLGCAPT
- HTML <dialog> 標籤HTML
- HTML <time> 標籤HTML
- HTML <aside> 標籤HTMLIDE
- HTML <article> 標籤HTML
- HTML <section> 標籤HTML
- HTML <main> 標籤HTMLAI
- HTML <var> 標籤HTML
- HTML <canvas> 標籤HTMLCanvas
- HTML常用標籤HTML
- html標籤整理HTML
- HTML 常用標籤HTML
- HTML <header> 標籤HTMLHeader
- HTML <footer> 標籤HTML
- HTML <nav> 標籤HTML
- HTML <label> 標籤HTML
- HTML <body>標籤HTML
- html基本標籤HTML
- html列表標籤HTML
- HTML <meta>標籤HTML
- HTML <iframe>標籤HTML
- HTML <span>標籤HTML
- HTML <head>標籤HTML
- html標籤使用HTML
- HTML20_HTML標籤3HTML
- 【HTML】05表格標籤HTML
- HTML標籤屬性HTML
- html <a>標籤的妙用HTML
- CSS&HTML標籤CSSHTML
- html的基本標籤HTML