Sunday, June 7, 2015

Details and Summary elements

These elements have been introduced for displaying a foldable zone in an HTML document.
In the screenshot below, taken from the W3C specification page, the text next to the horizontal arrow is a<summary> element, and the text displayed when we click on the summary part, is the <details> element. This is a sort of "accordion" with foldable content.

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <details>
  5.     <summary>
  6.         How to beat the boss...spoiler alert !
  7.     </summary>
  8.        <p> Just aim to the red spots near his eyes</p>
  9.        <p>Keep shooting at these spots until the eyes open, then hit
  10.        quickly both eyes with your laser beam.</p>
  11. </details>
  12. </body>
  13. </html>

No comments:

Post a Comment