← Back toCSS Layout

Questions and answers

Written byPhuoc Nguyen
Category
Display
Created
23 Nov, 2019

HTML

index.html
<!-- Collapsed question and answer item -->
<div class="questions-and-answers__item questions-and-answers__item--collapsed">
<!-- Heading -->
<div class="questions-and-answers__header">
<!-- Question -->
<div class="questions-and-answers__title">...</div>

<!-- The toggle icon sticks to the right -->
<div class="questions-and-answers__toggle"></div>
</div>

<!-- Answer -->
<div class="questions-and-answers__content">...</div>
</div>

<!-- Expanded question and answer item -->
<div class="questions-and-answers__item questions-and-answers__item--expanded">...</div>

CSS

styles.css
.questions-and-answers__item:not(:last-child) {
border-bottom: 1px solid #d1d5db;
}
.questions-and-answers__header {
align-items: center;
display: flex;
justify-content: center;
cursor: pointer;
padding: 0.5rem;
}
.questions-and-answers__toggle {
margin-right: 0.25rem;
}
.questions-and-answers__title {
/* Take the available width */
flex: 1;
}
.questions-and-answers__content {
padding: 0 0.5rem;
}

.questions-and-answers__item--collapsed .questions-and-answers__content {
display: none;
}
.questions-and-answers__item--expanded .questions-and-answers__content {
display: block;
}

Questions? 🙋

Do you have any questions? Not just about this specific post, but about any topic in front-end development that you'd like to learn more about? If so, feel free to send me a message on Twitter or send me an email. You can find them at the bottom of this page.
I have a long list of upcoming posts, but your questions or ideas for the next one will be my top priority. Let's learn together! Sharing knowledge is the best way to grow 🥷.

Recent posts ⚡

Newsletter 🔔

If you're into front-end technologies and you want to see more of the content I'm creating, then you might want to consider subscribing to my newsletter.
By subscribing, you'll be the first to know about new articles, products, and exclusive promotions.
Don't worry, I won't spam you. And if you ever change your mind, you can unsubscribe at any time.
Phước Nguyễn