Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Testimonials Grid Section with HTML&CSS

@selmakoksal

Desktop design screenshot for the Testimonials grid section coding challenge

This is a solution for...

  • HTML
  • CSS
2junior
View challenge

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

@mehmeterogul

Posted

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 helpful

1

@selmakoksal

Posted

Hi @mehmeterogul 👋 This code definitely helped. Thank you very much for your suggestion. 🙏

1

Please log in to post a comment

Log in with GitHub
Discord logo

Join 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