Design comparison
SolutionDesign
Solution retrospective
Any good resources for learning CSS grid. This project showed me how flexbox is not the only tool I should depend on for a layout.
Community feedback
- @spymonPosted over 3 years ago0
- @pikapikamartPosted over 3 years ago
Great work there, but to make things a lot nicer. Well if you click your faq, your container resizes with it. For that you could designate a fixed
height
andmax-height
to that container, then make itoverflow:scroll
, but it will leave a scrollbar but you can remove it via using these/* Hide scrollbar for Chrome, Safari and Opera */ .example::-webkit-scrollbar { display: none; } /* Hide scrollbar for IE, Edge and Firefox */ .example { -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ }
This snippet is from w3schools. Well that is just may suggestion ^
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord