
- HTML Home
- HTML Roadmap
- HTML Introduction
- HTML History & Evolution
- HTML Editors
- HTML Basic Tags
- HTML Elements
- HTML Attributes
- HTML Headings
- HTML Paragraphs
- HTML Fonts
- HTML Blocks
- HTML Style Sheet
- HTML Formatting
- HTML Quotations
- HTML - Comments
- HTML - Colors
- HTML - Images
- HTML - Image Map
- HTML - Frames
- HTML - Iframes
- HTML - Phrase Elements
- HTML - Code Elements
- HTML - Meta Tags
- HTML - Classes
- HTML - IDs
- HTML - Backgrounds
- HTML Tables
- HTML - Tables
- HTML - Table Headers & Captions
- HTML - Table Styling
- HTML - Table Colgroup
- HTML - Nested Tables
- HTML Lists
- HTML - Lists
- HTML - Unordered Lists
- HTML - Ordered Lists
- HTML - Definition Lists
- HTML Links
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML Color Names & Values
- HTML - Color Names
- HTML - RGB & RGBA Colors
- HTML - HEX Colors
- HTML - HSL & HSLA Colors
- HTML - HSL Color Picker
- HTML Forms
- HTML - Forms
- HTML - Form Attributes
- HTML - Form Control
- HTML - Input Attributes
- HTML Media
- HTML - Video Element
- HTML - Audio Element
- HTML - Embed Multimedia
- HTML Header
- HTML - Head Element
- HTML - Adding Favicon
- HTML - Javascript
- HTML Layouts
- HTML - Layouts
- HTML - Layout Elements
- HTML - Layout using CSS
- HTML - Responsiveness
- HTML - Symbols
- HTML - Emojis
- HTML - Style Guide
- HTML Graphics
- HTML - SVG
- HTML - Canvas
- HTML APIs
- HTML - Geolocation API
- HTML - Drag & Drop API
- HTML - Web Workers API
- HTML - WebSocket
- HTML - Web Storage
- HTML - Server Sent Events
- HTML Miscellaneous
- HTML - Document Object Model (DOM)
- HTML - MathML
- HTML - Microdata
- HTML - IndexedDB
- HTML - Web Messaging
- HTML - Web CORS
- HTML - Web RTC
- HTML Demo
- HTML - Audio Player
- HTML - Video Player
- HTML - Web slide Desk
- HTML Tools
- HTML - Velocity Draw
- HTML - QR Code
- HTML - Modernizer
- HTML - Validation
- HTML - Color Picker
- HTML References
- HTML - Cheat Sheet
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Character Entities
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
- HTML Resources
- HTML - Quick Guide
- HTML - Useful Resources
- HTML - Color Code Builder
- HTML - Online Editor
HTML - <details> Tag
The HTML <details> tag is used to create a disclosure widget that contains information, which becomes visible when the widget is toggled open.
A summary (or label) should be provided using the HTML <summary> tag. A disclosure widget is represented onscreen by a small black triangle that rotates to indicate its open or closed status, with labels next to the triangles. The content of the summary is used as a label for the disclosure widget.
Syntax
Following is the syntax of the HTML <details> tag −
<details>.....</details>
Attributes
The HTML <details> tag supports both Global and Event attributes. It also accepts a specific attribute, which is listed below.
Attribute | Values & Description |
---|---|
open |
open Specifies that the disclosure widget should be open by default; otherwise, it is closed. |
Example: Creating Details Element
The following examples will illustrate the usage of the <details> and tag how to use it to create detail elements on any website. The program below demonstrates the usage of the HTML <details> tags −
<!DOCTYPE html> <html lang="en"> <head> <title>HTML details tag</title> </head> <body> <!--create details tag--> <p>Click on the below label to open the details.</p> <details> <summary>Open</summary> You clicked on label(i.e. summary). </details> </body> </html>
Example: Details Element with Open Attribute
Here, we use the open attribute within the 'details' element to ensure the content is visible when the webpage loads −
<!DOCTYPE html> <html lang="en"> <head> <title>HTML details tag</title> </head> <body> <!--create details tag--> <p>HTML 'details' element example.</p> <details open> <summary>Open</summary> You have used the 'open' attribute, so by default, it opened already. </details> </body> </html>
Example: Disclosure widget using details Tag
Let's look at the following example, where we create a disclosure widget, using the HTML <details> tag to add additional information that users can toggle open and close. We also use CSS for styling the <details> tag −
<!DOCTYPE html> <html lang="en"> <head> <title>HTML details tag</title> <style> details { border: 1px solid blue; border-radius: 10px; padding: 4px; color: green; } details[open] { padding: 1px; } details[open] summary { border-bottom: 1px solid black; margin-bottom: 5px; color: red; } </style> </head> <body> <!--create details tag--> <p>HTML 'details' element example.</p> <details> <summary>Open</summary> A disclosure widget is represented onscreen using a small black triangle that rotates to indicate open and closed status, with labels next to the triangles. The content of the summary is used as a label for the disclosure widget. </details> </body> </html>
Supported Browsers
Tag | ![]() |
![]() |
![]() |
![]() |
![]() |
---|---|---|---|---|---|
footer | Yes 12.0 | Yes 79.0 | Yes 49.0 | Yes 6.0 | Yes 15.0 |