HTML交互元素
前端
HTML
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>
标签是 HTML 5 中的新标签,与
标签 配合使用可以为 details 定义标题。标题是可见的,用户点击标题时,会显示出 details。
summary
标签包含 details 元素的标题,“details” 元素用于描述有关文档或文档片段的详细信息。