您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關HTML如何使用div元素實現布局,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
注釋:<div> 元素常用作布局工具,因為能夠輕松地通過 CSS 對其進行定位。
這個例子使用了四個 <div> 元素來創建多列布局:
<html> <head> <style> #header { background-color:#1aaa11; color:white; text-align:center; padding:5px; } #nav { line-height:30px; background-color:#eeeeee; color:#faaaff; height:300px; width:100px; float:left; padding:5px; } #section { width:350px; float:left; padding:10px; } #footer { background-color:#166611; color:white; clear:both; text-align:center; padding:5px; } </style> </head> <body> <div id="header"> <h2>天華信息教育</h2> </div> <div id="nav" > 第一組<br> 第二組<br> 第三組<br> </div> <div id="section"> <h3>這是標題</h3> <p> 這是內容 </p> <p> 這是內容 </p> </div> <div id="footer"> 天華信息教育 </div> </body> </html>
HTML基礎教程:div元素實現布局
header 定義文檔或節的頁眉
nav 定義導航鏈接的容器
section 定義文檔中的節
article 定義獨立的自包含文章
aside 定義內容之外的內容(比如側欄)
footer 定義文檔或節的頁腳
details 定義額外的細節
summary 定義 details 元素的標題
<html> <head> <style> header { background-color:#1aaa11; color:white; text-align:center; padding:5px; } nav { line-height:30px; background-color:#eeeeee; color:#faaaff; height:300px; width:100px; float:left; padding:5px; } section { width:350px; float:left; padding:10px; } footer { background-color:#166611; color:white; clear:both; text-align:center; padding:5px; } </style> </head> <body> <header> <h2>天華信息教育</h2> </header> <nav> 第一組<br/> 第二組<br/> 第三組<br/> </nav> <section> <h2>這是標題</h2> <p> 這是內容 </p> <p> 這是內容 </p> </section> <footer> 天華信息教育 </footer> </body> </html>
關于“HTML如何使用div元素實現布局”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。