Giter Club home page Giter Club logo

faq-accordion-card-challenge's Introduction

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

Screenshot

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • CSS Grid
  • Mobile-first workflow

What I learned

I learned about:

  • Make Accordion Menu only using HTML & CSS
  • Adding icon from CSS
  • Animation stuffs
  • Changing elements style depends on the state
  • Positioning object in CSS
<!-- Accordion Menu -->
<div class="question">
  <input type="checkbox" id="question1" name="checkbox" />
  <label for="question1">How many team members can I invite?</label>
  <p class="answer">
    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>
/* Adding icon to the end of the question tab */
label::after {
  content: url("./images/icon-arrow-down.svg");
  transition: ease-in 300ms;
}

/* Change elements style depends on the input state */
input:checked + label {
  font-weight: bold;
  font-size: 0.875rem;
}

input:checked ~ .answer {
  max-height: 100vh;
  visibility: visible;
  margin-top: 1em;
  padding-right: 1.5rem;
}

input:checked + label::after {
  transform: rotate(-180deg);
}

Continued development

I wonder if i can make the same styling works with this elements

<details>
  <summary></summary>
</details>

Useful resources

  • W3Schools - Pretty much your guidebook in website development
  • MDN - W3Schools but from Mozilla.
  • Codepen.io - For some codes

Author

Acknowledgments

Thanks to Raúl Barrera on Codepen.io for the pure css accordion menu pen

faq-accordion-card-challenge's People

Contributors

fsuropaty avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.