Skip to content

exenestecnico/fm-faq-accordion

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frontend Mentor - FAQ accordion card solution

This is a solution to the FAQ accordion card challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Overview

The challenge

Users should be able to:

  • View the optimal layout for the component depending on their device's screen size
  • See hover states for all interactive elements on the page
  • Hide/Show the answer to a question when the question is clicked

Screenshots

Links

My process

Built with

  • Semantic HTML5 markup
  • Flexbox
  • Mobile-first workflow

What I learned

Practiced making the accordion without using javascript. The open/closed state is modeled using hidden checkboxes.

Using a <label> with the title inside allows toggling the checkbox.

<li class="accordion-item">
  <input type="checkbox" id="item1">
  <div class="accordion-item-header">
    <label for="item1">
      <span>How many team members can I invite?</span>
      <span class="incon-arrow-down"></span>
    </label>
  </div>
  <div class="accordion-item-body">
    <p>You can invite up to 2 additional users on the Free plan. There is no limit on team members for the Premium plan.</p>
  </div>
</li>

Then the CSS uses the checked state of the checkbox to modify the item header and body.

.accordion-item input[type="checkbox"]:checked ~ .accordion-item-header label {
  font-weight: 700;
}

.accordion-item input[type="checkbox"]:checked ~ .accordion-item-header label .incon-arrow-down {
  transform: rotateX(180deg);
}

.accordion-item input[type="checkbox"]:checked ~ .accordion-item-body {
  max-height: 80px;
  opacity: 1;
}

Author

About

Frontend Mentor - FAQ accordion card solution

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published