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

Responsive Testimonial Page Using CSS Grid

@DruxAMB

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


Built a testimonial grid section so as to improve my knowledge on css grid.

Community feedback

@matiasluduena23

Posted

Hi DruxAMB’s! Congratulations you finished the challenge!!! Just one recommendation that might help you with your projects.

  • You can use a utility class to center you content in the middle and prevent that stretch all away the viewport width.

In your css file

.container {
widht: 90%;  // in small screens it will take the 90% of the viewport width
max-width: 1100px;  // in big screens won't grow more than 1100px viewport width
margin-inline: auto;  //margin left and right will center you content
}

In you html

<div class="container" >
   <main class="main-section">
      content
  </main>
</div>

Hope this help you!

Good code!

Matias

Marked as helpful

0

@DruxAMB

Posted

@matiasluduena23 thanks bro

0

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