HTML5的<footer>標(biāo)簽元素如何使用
發(fā)表時(shí)間:2023-12-27 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]H5里面增加了一個(gè)<footer>標(biāo)簽元素,那么我們要怎樣使用呢?記得我們?cè)趆tml5版本以前布局網(wǎng)頁(yè)底部版權(quán)時(shí),都會(huì)習(xí)慣使用id=”footer”或class=”footer”來標(biāo)記段落,但是在H5里有了這個(gè)標(biāo)簽之后,一切都簡(jiǎn)單了很多。HTML5 <footer>標(biāo)簽元素...
H5里面增加了一個(gè)<footer>標(biāo)簽元素,那么我們要怎樣使用呢?記得我們?cè)趆tml5版本以前布局網(wǎng)頁(yè)底部版權(quán)時(shí),都會(huì)習(xí)慣使用id=”footer”或class=”footer”來標(biāo)記段落,但是在H5里有了這個(gè)標(biāo)簽之后,一切都簡(jiǎn)單了很多。
HTML5 <footer>標(biāo)簽元素 新增html5底部footer元素標(biāo)簽,對(duì)html 5新增footer標(biāo)簽基礎(chǔ)認(rèn)識(shí)到了解footer css布局教程做到真正掌握與認(rèn)識(shí)<footer>
記得我們?cè)谝郧癶tml5版本以前布局網(wǎng)頁(yè)底部版權(quán)時(shí),習(xí)慣使用id=”footer”或class=”footer”。了解更多html教程標(biāo)簽!
比如傳統(tǒng)html布局代碼:
<div id=”footer”>
學(xué)習(xí)PHP,上www.php.cn!
</div>
但在html5中將此”footer”常用的命名新增為html5元素標(biāo)簽成員。
html5語(yǔ)法結(jié)構(gòu)
1、語(yǔ)法
<footer>
第一行
學(xué)習(xí)PHP,上www.php.cn!
</footer>
2、對(duì)footer元素標(biāo)簽加id
<footer id=”abc”>
第一行
學(xué)習(xí)PHP,上www.php.cn!
</footer>
3、對(duì)footer標(biāo)簽加class
<footer class=”yanshi”>
第一行
學(xué)習(xí)PHP,上www.php.cn!
</footer>
4、知識(shí)擴(kuò)展
我們?cè)趆tml5開發(fā)使用footer標(biāo)簽時(shí),把當(dāng)作普通div標(biāo)簽對(duì)待即可,只不過一般用于網(wǎng)站底部布局。一般情況下一篇網(wǎng)頁(yè)只有一個(gè)底部區(qū),所以使用最好只使用一次footer即可。
需要注意:<footer>是html5新增的,在IE8及以下IE瀏覽器不兼容,謹(jǐn)慎使用。
tml5 footer使用布局案例
通過傳統(tǒng)div標(biāo)簽布局與footer標(biāo)簽布局對(duì)比觀察學(xué)習(xí),從而掌握footer標(biāo)簽。同時(shí)對(duì)footer加class,設(shè)置紅色字體進(jìn)行對(duì)比。
1、完整HTML5布局實(shí)例代碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>footer </title>
<style>
body{text-align:center}
/* 傳統(tǒng)布局CSS */
#footer{color:#CCC; background:#630202;border-top:1px solid #871515; padding:10px 0 30px 0; width:100%}
/* HTML5布局樣式 直接對(duì)footer元素設(shè)置樣式 */
footer{ background:#CCC;border-top:1px solid #000; padding:10px 0 30px 0; width:100%}
.color-F00{ color:#F00}
</style>
</head>
<body>
<p>傳統(tǒng)html 使用div布局</p>
<div id="footer">
第一行
學(xué)習(xí)PHP,上www.php.cn!
</div>
<p>html5 footer標(biāo)簽布局</p>
<footer>
第一行
學(xué)習(xí)PHP,上www.php.cn!
</footer>
<p>html5 footer標(biāo)簽布局設(shè)置class</p>
<footer class="color-F00">
第一行
學(xué)習(xí)PHP,上www.php.cn!
</footer>
</body>
</html>
以上使用傳統(tǒng)html div標(biāo)簽和html5 footer標(biāo)簽布局,同時(shí)也對(duì)footer設(shè)置class
<footer>標(biāo)簽的用法就是這么多了,更多精彩請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
相關(guān)推薦
html 的<header>標(biāo)簽需要怎么使用
html文檔類型聲明怎么寫
css3里怎么顯示圓形圖片
以上就是HTML5的<footer>標(biāo)簽元素怎么使用 的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
網(wǎng)站建設(shè)是一個(gè)廣義的術(shù)語(yǔ),涵蓋了許多不同的技能和學(xué)科中所使用的生產(chǎn)和維護(hù)的網(wǎng)站。