HTML交互元素

前端
HTML
作者

yangjh

发布日期

October 30, 2021

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” 元素用于描述有关文档或文档片段的详细信息。

dialog

标签定义对话框或窗口。是 HTML 5 中的新标签,截止目前,多数浏览器并不支持。

回到顶部