Design comparison
SolutionDesign
Solution retrospective
What specific areas of your project would you like help with?
Can you help me how to fix the overflow below in the section with Kira?
Community feedback
- @mehmeterogulPosted 8 months ago
Hello Selma, well done 👋
The reason of the overflow is the margin-bottom property that defined in flex-group class.
.flex-group { ... margin-bottom: 1.5rem; }
You can easily fix it by removing margin-bottom from the last flex-group element. You can try the code below. 👇
.flex-group:last-of-type { margin-bottom: 0; }
I hope this helps. Keep up the good work. 👍
Marked as helpful1@selmakoksalPosted 8 months agoHi @mehmeterogul 👋 This code definitely helped. Thank you very much for your suggestion. 🙏
1
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