浪货趴办公桌~H揉秘书电影无码|浪货趴办公桌~H揉秘书|辣妹子影院在线观看电视剧高清|狂C亲女含苞欲H|快穿做妓女好爽HNP|巜中字与上司出轨的人妻

0411-39943997
工作時間:周一至周日 8:30-17:30
技術文庫
Technical Library

HTML 布局

標簽: HTML知識   訪問: 12652019-07-15

HTML 布局:

網站常常以多列顯示內容(就像雜志和報紙)。

image.png

使用 <div> 元素的 HTML 布局

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

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

實例:

<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 的網站布局

HTML5 提供的新語義元素定義了網頁的不同部分:

HTML5 語義元素

image.png


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

實例:

<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; 
}
</style>

使用表格的 HTML 布局

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

<table> 元素的作用是顯示表格化的數據。

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

實例:

<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>

本站關鍵詞:大連網站建設  |  大連網絡公司

Copyright? 2020 仟億科技,All rights reserved.
联系我们: 拉萨市| 鹤岗市| 宜都市| 普定县| 新化县| 南宫市| 莲花县| 临西县| 剑阁县| 沧州市| 漳州市| 治县。| 义马市| 夏津县| 中卫市| 无极县| 双城市| 河北省| 讷河市| 济南市| 南和县| 东莞市| 墨竹工卡县| 庆云县| 洪湖市| 泽库县| 化德县| 门头沟区| 隆化县| 汝州市| 大港区| 独山县| 沙坪坝区| 重庆市| 柘城县| 连南| 浦北县| 北宁市| 弥勒县| 河南省| 德安县|