title: Add Responsive-Friendly Enhancements to details
with details-utils
-zachleat.com
url: https://www.zachleat.com/web/details-utils/
hash_url: ce44e84463
I use <details>
. I use <details>
a lot. It is one of my favorite HTML elements.
Over time I’ve collected a bunch of add-on utilities to enhance <details>
with new features and functionality. They’ve been super useful in a bunch of long-standing production implementations at Netlify:
I’ve decided to finally package those <details>
helpers up and formally release them as a web component!
<details-utils>
#<details-utils>
<details>…</details>
</details-utils>
At time of writing, this web component adds five new responsive-friendly enhancements to one or more <details>
elements nestled inside:
esc
class
In this example, the <details>
is forced open when viewport is wider than 48em
.
<details-utils force-open="(min-width: 48em)" force-restore>
<details open>…</details>
</details-utils>
I’ve gotten a lot of mileage out of the above example, specifically to drive navigation that is always visible at a certain breakpoint (think a collapsible menu at small viewport versus sidebar, e.g. 11ty.dev/docs/
).
Alternatively, force-close
is also available. The optional force-restore
attribute will restore previous state when the force-open
or force-close
media queries do not match.
The media query is optional, and using it as a bare attribute allows control of the state pre and post JavaScript.
<details-utils force-open>
<details>…</details>
</details-utils>
<details-utils force-close>
<details open>…</details>
</details-utils>
If you click anywhere on the document (outside of the <details>
content), the <details>
will be closed. This is useful when you want to absolutely position the <details>
content (maybe to make a little custom dropdown 😱)
<details-utils close-click-outside>
<details>…</details>
</details-utils>
You can scope this with a media query as well:
<details-utils close-click-outside="(min-width: 48em)">
<details>…</details>
</details-utils>
Add your own bonus close button inside of the content (to complement <summary>
):
details-utils:not(:defined) [data-du-close-click] {
display: none;
}
<details-utils close-click-outside>
<details id="my-details">
<summary>…</summary>
<button type="button" aria-controls="my-details" data-du-close-click>Close</button>
</details>
</details-utils>
esc
#Closes the <details>
when the esc
key is hit on the keyboard. Media query is optional.
<details-utils close-esc="(max-width: 767px)">
<details>…</details>
</details-utils>
<details-utils animate>
<details>…</details>
</details-utils>
Animates the height of the content when opening and closing the <details>
. Ignored automatically if (prefers-reduced-motion)
is detected.
Just a full disclosure, the configuration around this one is pretty limited (re: easing and timing). Also this doesn’t support media query scoping yet (not for any technical reason, just haven’t run into this use case yet). Open to contributions here!
class
on root element #<details-utils toggle-document-class="my-class-name">
<details>…</details>
</details-utils>
Adds a class
to your <html>
element when the <details>
is open and removes it when the <details>
is closed.
Wiring up and combining each of these enhancements to <details>
really can go a long way in building a lot of complex user interface elements in a pretty straightforward way. In my humble opinion, the super long list of things I’ve built using this is proof of that. I hope you can get some useful mileage out of them too!