FAQ
Excepteur sint occaecat cupidatat non proident sunt in culpa qui officia.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident sunt in culpa qui officia deserun.
Excepteur oat cupidatat?
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident sunt.
Excepteur oat cupidatat?
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident sunt.
Excepteur oat cupidatat?
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident sunt.
Excepteur oat cupidatat?
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident sunt.
Excepteur oat cupidatat?
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident sunt.
Excepteur oat cupidatat?
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident sunt.
from here:
Accordion Element
Languages Used
This page was written in HTML and CSS. The CSS was compiled from SASS. I used Normalize as my CSS reset and -prefix-free to save myself some headaches. I haven’t quite gotten the hang of Slim for compiling into HTML, but someday I’ll use it since its syntax compliments that of SASS. Regardless, this could all be done in plain HTML and CSS.
How it Works
Using the sibling and checked selectors, we can determine the styling of sibling elements based on the checked state of the checkbox input element. One use, as demonstrated here, is an entirely CSS and HTML accordion element. Media queries are used to make the element responsive to different screen sizes.
Points of Interest
By making the open state default for when :checked isn’t detected, we can make this system accessable for browsers that don’t recognize :checked. The fallback is simply an open accordion. The accordion can be manipulated with Javascript (if needed) by changing the “checked” property of the input element.