HTML <details> 标签
更新时间: 09/22/2018 由sky8g编辑
在使用HTML编写时,<basefont>是一个块元素,用于创建一个可以隐藏内容的交互式小部件。当您想在不占用空间的情况下包含额外信息时,这是非常有用的。以下部分包含关于此标记的信息,包括使用中的示例,以及相关属性和浏览器兼容性。
代码示例
1 2 3 4 | <details> <summary>Here is some information.</summary> <p>Here are additional details about this information.</p> </details> |
显示如下
Here is some information.
Here are additional details about this information.
属性
在HTML标记中,属性指示HTML元素的某些方面。属性由名称和值对组成;所有标签都支持标准属性。
Attribute | Description |
---|---|
open | 指定在页面第一次加载时打开详细信息 |
兼容性
Internet Explorer | Firefox | Safari | Opera | Chrome |
---|---|---|---|---|
Not supported | Not supported | 6.0+ | 15.0+ | 12.0+ |