文档中的页脚部分:
<footer> <p>Author: Hello World</p> <p><a href="mailto:hello@example.com">hello@example.com</a></p> </footer>
<footer>
标签定义文档或部分的页脚。
<footer>
元素通常包含:
您可以在一个文档中包含多个 <footer>
元素。
提示: <footer>
元素内的联系信息应放在 <address> 标签内。
表中的数字指定了完全支持该元素的第一个浏览器版本。
Element | |||||
---|---|---|---|---|---|
<footer> | 5.0 | 9.0 | 4.0 | 5.0 | 11.1 |
<footer>
标签支持 HTML 中的全局属性。
<footer>
标签支持 HTML 中的事件属性。
使用 CSS 设置 <footer> 样式:
<html> <head> <style> footer { text-align: center; padding: 3px; background-color: DarkSalmon; color: white; } </style> </head> <body> <footer> <p>Author: Hello World<br> <a href="mailto:hello@example.com">hello@example.com</a></p> </footer> </body> </html>
大多数浏览器将显示具有以下默认值的 <footer>
元素:
footer {
display: block;
}