HTML的<figcaption>标签
发布时间:09/01 来源:未知 浏览:
关键词:
Internet Explorer 9, Firefox, Opera, Chrome 乃至 Safari 支撑 <figcaption> 标签。
注:Internet Explorer 8 乃至更早的版本不支撑 <figcaption> 标签。 ( 引荐学习:html教程 )
定义和用途
<figcaption> 标签定义 figure 元素的标题(caption)。
"figcaption" 元素应当被置于 "figure" 元素的第一个或最后一个子元素的位置。
阅读器支撑
所有主流阅读器都支撑 <figcaption> 标签。
HTML 4.01 与 HTML 5 之间的差别
<figcaption> 标签是 HTML 5 中的新标签。
实例
用作文档中插图的图像,带有一个标题::
<!DOCTYPE html> <html> <body> <p>The Pulpit Rock is a massive cliff 604 metres (1982 feet) above Lysefjorden, opposite the Kjerag plateau, in Forsand, Ryfylke, Norway. The top of the cliff is approximately 25 by 25 metres (82 by 82 feet) square and almost flat, and is a famous tourist attraction in Norway.</p> <figure> <figcaption>Fig.1 - The Pulpit Rock, Norway.</figcaption> </figure> </body> </html>
以上就是HTML的<figcaption>标签的具体内容,更多请关注百分百源码网其它相关文章!