最新赞助活动温馨提示:自愿赞助服务器费用,学生和没有工作的整站资源免费下载!
头像

HTML5每日一练之figure新标签的应用-H5教程

来源:http://erdangjiade.com/topic/133800.html H5程序员 2017-10-26 09:09浏览(21)

figure元素是一种元素的组合,可带有标题(可选)。figure标签用来表示网页上一块独立的内容,将其从网页上移除后不会对网页上的其他内容产生影响。figure所表示的内容可以是图片、统计图或代码示例。

figure用友一个子标签——figcaption标签。

注意:一个figure元素内最多只允许放置一个figcaption元素,其他元素可无限放置。


案例1:
不带有标题的figure元素:
  • <!DOCTYPE HTML>
  • <html>
  • <head>
  • <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  • <title>HTML5每日一练之figure新标签的应用-不带有标题的figure元素</title>
  • </head>

  • <body>
  • <figure>
  • <img alt="W3C,W3Cfuns" src="http://www.w3cfuns.com/template/w3cfuns2011/images/logo/logo.png"/>
  • </figure>
  • </body>
  • </html>



案例2:
带有标题的figure元素:
  • <!DOCTYPE HTML>
  • <html>
  • <head>
  • <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  • <title>HTML5每日一练之figure新标签的应用-带有标题的figure元素</title>
  • </head>

  • <body>
  • <figure>
  • <img alt="W3C,W3Cfuns" src="http://www.w3cfuns.com/template/w3cfuns2011/images/logo/logo.png"/>
  • <figcaption>W3Cfuns</figcaption>
  • </figure>
  • </body>
  • </html>



案例3:
多个图片,同一个标题的figure元素:
  • <!DOCTYPE HTML>
  • <html>
  • <head>
  • <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  • <title>HTML5每日一练之figure新标签的应用-多个图片,同一个标题的figure元素</title>
  • </head>

  • <body>
  • <figure>
  • <img alt="W3C,W3Cfuns" src="http://www.w3cfuns.com/template/w3cfuns2011/images/logo/logo.png"/>
  • <img alt="厘米IT学院" src="http://www.w3cstudy.com/images/common/Logo.gif"/>
  • <img alt="厘米动力" src="http://www.cmmotion.com/images/bigLogo.jpg"/>
  • <figcaption>W3Cfuns打造Web前端开发权威社区!</figcaption>
  • </figure>
  • </body>
  • </html>



评论0
头像

友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群

1 2