details

英['di:teɪlz]   美['di:teɪlz]  

n.詳細資料;詳述( detail名詞的複數); (照片、繪畫等的)細部;細目;各種細節

html5<details>標籤 語法

作用:<details> 標籤用來描述文件或文件某部分的細節。

參數

##描述#openopen定義details 是否可見。
屬性

註解:與 <summary> 標籤 配合使用可以為 details 定義標題。標題是可見的,當使用者點擊標題時,會顯示出 details。

html5<details>標籤 範例

<!DOCTYPE HTML>
<html>
<body>
<details>
<summary>Copyright 2011.</summary>
<p>All pages and graphics on this web site are the property of W3School.</p>
</details>

</body>
</html>
執行實例 »

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

#