国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > HTML > 正文

HTML 布局

2024-08-26 00:08:34
字體:
供稿:網(wǎng)友

網(wǎng)站常常以多列顯示內(nèi)容(就像雜志和報紙)。

使用 <div> 元素的 html 布局

注釋:<div> 元素常用作布局工具,因為能夠輕松地通過 CSS 對其進行定位。

這個例子使用了四個 <div> 元素來創(chuàng)建多列布局:

實例

<body><div id="header"><h1>City Gallery</h1></div><div id="nav">London<br>Paris<br>Tokyo<br></div><div id="section"><h1>London</h1><p>London is the capital city of England. It is the most populous city in the United Kingdom,with a metropolitan area of over 13 million inhabitants.</p><p>Standing on the River Thames, London has been a major settlement for two millennia,its history going back to its founding by the Romans, who named it Londinium.</p></div><div id="footer">Copyright W3School.com.cn</div></body>

親自試一試

CSS:

<style>#header {    background-color:black;    color:white;    text-align:center;    padding:5px;}#nav {    line-height:30px;    background-color:#eeeeee;    height:300px;    width:100px;    float:left;    padding:5px; }#section {    width:350px;    float:left;    padding:10px; }#footer {    background-color:black;    color:white;    clear:both;    text-align:center;    padding:5px; }</style>

使用 HTML5 的網(wǎng)站布局

HTML5 提供的新語義元素定義了網(wǎng)頁的不同部分:

HTML5 語義元素

header定義文檔或節(jié)的頁眉
nav定義導(dǎo)航鏈接的容器
section定義文檔中的節(jié)
article定義獨立的自包含文章
aside定義內(nèi)容之外的內(nèi)容(比如側(cè)欄)
footer定義文檔或節(jié)的頁腳
details定義額外的細節(jié)
summary定義 details 元素的標(biāo)題

這個例子使用 <header>, <nav>, <section>, 以及 <footer> 來創(chuàng)建多列布局:

實例

<body><header><h1>City Gallery</h1></header><nav>London<br>Paris<br>Tokyo<br></nav><section><h1>London</h1><p>London is the capital city of England. It is the most populous city in the United Kingdom,with a metropolitan area of over 13 million inhabitants.</p><p>Standing on the River Thames, London has been a major settlement for two millennia,its history going back to its founding by the Romans, who named it Londinium.</p></section><footer>Copyright W3School.com.cn</footer></body>

親自試一試

CSS

<style>header {    background-color:black;    color:white;    text-align:center;    padding:5px; }nav {    line-height:30px;    background-color:#eeeeee;    height:300px;    width:100px;    float:left;    padding:5px; }section {    width:350px;    float:left;    padding:10px; }footer {    background-color:black;    color:white;    clear:both;    text-align:center;    padding:5px; }

使用表格的 HTML 布局

注釋:<table> 元素不是作為布局工具而設(shè)計的。

<table> 元素的作用是顯示表格化的數(shù)據(jù)。

使用 <table> 元素能夠取得布局效果,因為能夠通過 CSS 設(shè)置表格元素的樣式:

實例

<body><table class="lamp"><tr>  <th>    <img src="/images/lamp.jpg" alt="Note" style="height:32px;width:32px">  </th>  <td>    The table element was not designed to be a layout tool.  </td></tr></table></body>

親自試一試

CSS

<style>table.lamp {    width:100%;    border:1px solid #d4d4d4;}table.lamp th, td {    padding:10px;}table.lamp td {    width:40px;}</style>

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 宁强县| 大渡口区| 张家港市| 崇左市| 繁峙县| 永德县| 鸡东县| 香格里拉县| 黄山市| 福建省| 岳阳县| 沁水县| 沙田区| 屏东市| 察隅县| 宜州市| 东乡县| 安福县| 伊通| 平南县| 南京市| 通城县| 高邑县| 拜城县| 平湖市| 江西省| 东山县| 厦门市| 北宁市| 肇州县| 体育| 乌兰县| 滕州市| 霍城县| 名山县| 吉林市| 十堰市| 十堰市| 南康市| 黄浦区| 南康市|