DEV Community

Cover image for Frontend Challenge #5, FAQ Accordion
JC Smiley
JC Smiley

Posted on • Updated on

Frontend Challenge #5, FAQ Accordion

Follow me as I briefly describe my coding journey to build a FAQ Accordion component from Frontend Mentors. Frontend Mentors is a online platform that provide front-end challenges that include professional web designs.

The goal is to build this:
Desktop
Given desktop image

Mobile
Given mobile image

Step 1

First course of action was to attempt the design responsiveness aspect from the start.
Code for design responsiveness

Step 2

I realized I needed to make sure the accordion title is clickable and the content of the accordion needed to be hidden. When clicked, the content of the accordion is made visible, the accordion title's style is changed, and the arrow SVG turns 180 degrees.

The first problem I faced was the functionality of opening and closing each accordion section. I couldn't get it to work properly after a night of troubleshooting. A few days later, I suddenly awoke during the night with a simpler solution that should have been the first option.

Code to open or close the accordion

Step 3

The most difficult problem of the challenge was positioning and layering three separate images while hiding some of them. Up until now I never had to hide parts of an image.
compare desktop versions

Step 4

This was a wonderful learning opportunity to use different sizes of the same image based on screen width.
Code of HTML 5 picture element

Step 5

Unique accessibility concepts I've learned while building this custom accordion component

  1. The custom accordion component needed the ability to be navigated with tabs.
  2. The header of an accordion needed to be a button since it was clickable.
  3. Since the component would collapse, there was an aria label called "aria-expanded" to learn about.
  4. I didn't need a title in the alt tag for the image because it was purely decoration.
  5. The hidden area to be open is considered a "region" and needs a "aria-labelledby" to the clickable button.
  6. A label element should be attached to a input, text-area, or select element.

Accessible code comparison

After making these changes, my site can now be navigated with the tab button and the accordion component opened with the enter key.

Final Outcome

Final desktop version

You can play with the solution here. I want to add one restriction, the challenge is designed to view the responsiveness at 375px and 1440px width. Any other size and it looks dicey. This is intentional.

What I learned

  1. Mimic an accordion object functionality without using Detail and Summary HTML5 elements.
  2. Practice CSS styling like CSS background gradient
  3. Stacking, positioning, and layering images with CSS
  4. Practice CSS functionality on the webpage like animating elements while hovering
  5. Script tags go at the bottom of the html page. I spent 30 minutes screaming "why is this not working" for nothing.
  6. Including accessibility concepts & tags like aria-labelledby, role, region, and area-expanded so user can navigate via keyboard.

Resources used

  1. HTML5 Responsive Images BY CSS-TRICKS
  2. Mimic HTML5 Accordion elements
  3. Tips on hiding and positioning images
  4. Accessibility: Tab-index
  5. Accessibility: Accordion
  6. Accessibility tester

Thank you for reading!

Thank you for reading my blog. Feel free to connect with me on Twitter or LinkedIn.

You can find the completed code here

Top comments (0)