<圖>


HTML <figure> 標籤

#實例

<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title>php中文网(php.cn)</title> 
</head>
<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>
  <img src="img_pulpit.jpg" tppabs="http://w3schools.com/tags/img_pulpit.jpg" alt="The Pulpit Rock" width="304" height="228">
</figure>

</body>
</html>

執行實例»

點擊"運行實例" 按鈕查看線上實例


瀏覽器支援

1000.png

#IE 9、Firefox、Opera、Chrome和Safari 支援<figure> 標籤。

註解:IE 8 或更早版本的 IE 瀏覽器不支援 <figure> 標籤。


標籤定義並使用說明

<figure> 標籤規定獨立的串流內容(圖像、圖表、照片、程式碼等等)。

<figure> 元素的內容應該與主內容相關,同時元素的位置相對於主內容是獨立的。如果被刪除,則不應對文件流產生影響。


HTML 4.01 與 HTML5之間的差異

<figure> 標籤是 HTML 5 中的新標籤。


提示與註解

提示:<figcaption> 元素被用來為 <figure> 元素定義標題。


全域屬性

<figure> 標籤支援 HTML 的全域屬性。


事件屬性

<figure> 標籤支援 HTML 的事件屬性。


#