search
HomeWeb Front-endHTML TutorialHow do you use the <details> and <summary> elements to create collapsible sections?

How do you use the
and elements to create collapsible sections?

To create collapsible sections on a web page, you can use the HTML5 <details></details> and <summary></summary> elements. The <details></details> element represents a widget that the user can interact with to obtain additional information or controls. The <summary></summary> element, which must be a direct child of the <details></details> element, specifies the summary or label for the <details></details> element.

Here's a basic example of how to use these elements:

<details>
  <summary>Click to expand</summary>
  <p>This is the content that will be shown when the user expands the section.</p>
</details>

In this example:

  • The <details></details> element creates the collapsible widget.
  • The <summary></summary> element provides a label for the widget. Clicking on this label will toggle the visibility of the content within the <details></details> element.
  • The content inside the <details></details> element but outside the <summary></summary> element is what will be hidden or shown when the user interacts with the widget.

You can place any HTML content inside the <details></details> element, allowing for flexible and rich collapsible sections on your web page.

What are the benefits of using
and for user experience?

Using <details></details> and <summary></summary> elements can significantly enhance user experience in several ways:

  1. Reduced Cognitive Load: By allowing users to expand and collapse content as needed, these elements help manage information overload. Users can focus on what's immediately relevant and explore additional details at their own pace.
  2. Improved Accessibility: These elements are built into HTML5 and are recognized by screen readers and other assistive technologies. The open attribute on the <details></details> element can also be used to set the initial state of the widget, which can be beneficial for accessibility.
  3. Better Content Organization: Collapsible sections help organize content more effectively, making it easier for users to navigate through large amounts of information. This is particularly useful for FAQs, documentation, and other content-heavy pages.
  4. User Control: Users have control over what they see and when they see it, which can lead to a more personalized and engaging experience. They can quickly hide or show information without needing to scroll through irrelevant content.
  5. No JavaScript Required: These elements are native to HTML5, meaning you can achieve interactive content without relying on JavaScript, which can improve page load times and simplify development.

Can
and be styled with CSS, and if so, how?

Yes, <details></details> and <summary></summary> elements can be styled with CSS, allowing for a high degree of customization to match your website's design. Here's how you can style these elements:

  1. Styling the <details></details> element: You can change the appearance of the entire collapsible section using CSS. For example, you can set a border, background color, and padding:
details {
  border: 1px solid #aaa;
  border-radius: 4px;
  padding: .5em .5em 0;
}

details[open] {
  padding: .5em;
}

details[open] summary {
  border-bottom: 1px solid #aaa;
  margin-bottom: .5em;
}
  1. Styling the <summary></summary> element: You can modify the look of the summary label. For instance, you can change the color, font, and add icons:
summary {
  font-weight: bold;
  color: #333;
}

summary::marker {
  /* Hide default marker */
  content: "";
}

summary::before {
  /* Add custom marker */
  content: "▶ ";
  font-size: .8em;
}

details[open] summary::before {
  content: "▼ ";
}
  1. Customizing the marker: The ::marker pseudo-element can be used to style the default marker (usually a triangle), but browser support is limited. Using ::before and ::after pseudo-elements can be a more consistent way to add custom markers.
  2. Hover and Focus States: You can also style the hover and focus states to improve user interaction:
summary:hover, summary:focus {
  color: #000;
  cursor: pointer;
}

Remember that while you can style these elements, some browsers may have default styles that you'll need to override with your custom CSS.

Are there any browser compatibility issues to consider when using
and ?

While <details></details> and <summary></summary> are part of the HTML5 standard, there are some browser compatibility issues to consider:

  1. Older Browsers: These elements are not supported in Internet Explorer or older versions of other browsers. If you need to support these browsers, you might need to use polyfills or alternative solutions.
  2. Styling: Some styling features, such as the ::marker pseudo-element, have limited browser support. You may need to use alternative methods, like ::before and ::after, to achieve consistent styling across browsers.
  3. Default Behavior: Some browsers may have different default styles and behaviors for these elements. For example, Safari does not allow a <summary></summary> to be styled with display: block. You may need to use CSS to normalize these differences.
  4. JavaScript Interactions: If you plan to enhance these elements with JavaScript, ensure that your scripts are compatible with the way different browsers handle these elements.

You can check the latest browser compatibility information on resources like Can I Use? (caniuse.com) to stay updated on support for these HTML elements across different browsers.

The above is the detailed content of How do you use the <details> and <summary> elements to create collapsible sections?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
HTML's Purpose: Enabling Web Browsers to Display ContentHTML's Purpose: Enabling Web Browsers to Display ContentMay 03, 2025 am 12:03 AM

The core purpose of HTML is to enable the browser to understand and display web content. 1. HTML defines the web page structure and content through tags, such as, to, etc. 2. HTML5 enhances multimedia support and introduces and tags. 3.HTML provides form elements to support user interaction. 4. Optimizing HTML code can improve web page performance, such as reducing HTTP requests and compressing HTML.

Why are HTML tags important for web development?Why are HTML tags important for web development?May 02, 2025 am 12:03 AM

HTMLtagsareessentialforwebdevelopmentastheystructureandenhancewebpages.1)Theydefinelayout,semantics,andinteractivity.2)SemantictagsimproveaccessibilityandSEO.3)Properuseoftagscanoptimizeperformanceandensurecross-browsercompatibility.

Explain the importance of using consistent coding style for HTML tags and attributes.Explain the importance of using consistent coding style for HTML tags and attributes.May 01, 2025 am 12:01 AM

A consistent HTML encoding style is important because it improves the readability, maintainability and efficiency of the code. 1) Use lowercase tags and attributes, 2) Keep consistent indentation, 3) Select and stick to single or double quotes, 4) Avoid mixing different styles in projects, 5) Use automation tools such as Prettier or ESLint to ensure consistency in styles.

How to implement multi-project carousel in Bootstrap 4?How to implement multi-project carousel in Bootstrap 4?Apr 30, 2025 pm 03:24 PM

Solution to implement multi-project carousel in Bootstrap4 Implementing multi-project carousel in Bootstrap4 is not an easy task. Although Bootstrap...

How does deepseek official website achieve the effect of penetrating mouse scroll event?How does deepseek official website achieve the effect of penetrating mouse scroll event?Apr 30, 2025 pm 03:21 PM

How to achieve the effect of mouse scrolling event penetration? When we browse the web, we often encounter some special interaction designs. For example, on deepseek official website, �...

How to modify the playback control style of HTML videoHow to modify the playback control style of HTML videoApr 30, 2025 pm 03:18 PM

The default playback control style of HTML video cannot be modified directly through CSS. 1. Create custom controls using JavaScript. 2. Beautify these controls through CSS. 3. Consider compatibility, user experience and performance, using libraries such as Video.js or Plyr can simplify the process.

What problems will be caused by using native select on your phone?What problems will be caused by using native select on your phone?Apr 30, 2025 pm 03:15 PM

Potential problems with using native select on mobile phones When developing mobile applications, we often encounter the need for selecting boxes. Normally, developers...

What are the disadvantages of using native select on your phone?What are the disadvantages of using native select on your phone?Apr 30, 2025 pm 03:12 PM

What are the disadvantages of using native select on your phone? When developing applications on mobile devices, it is very important to choose the right UI components. Many developers...

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment