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

Testimonial Grid Section using flex and grid css.

Melโ€ข 90

@devmelody

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


Hello, all. What's the reason for the excess blank space when I change to mobile view, please? I even tried to hide whatever overflow might exist, still no change. Any advice and comment is welcome.

Community feedback

@0xabdul

Posted

Hello there Congratulations you finished the Testimonial Grid Section ...๐ŸŽ‰

  • A Few Recommendation for you improve your code..

  • Html ๐Ÿท๏ธ :

  • in fact html page Must be included only one main landmark..

  • land mark..?

  • The main landmark should be a top-level landmark. When a page contains nested document and/or application roles (e.g. typically through the use of iframe and frame elements), each document or application role may have one main landmark. If a page includes more than one main landmark, each should have a unique label.

  • EX :

<body>
<div class="container" role="main">
//Whole html code here๐Ÿท๏ธ
</div>
</body>
  • In Css ๐ŸŽจ :
  • well your Testimonial Grid Section is not center aligning๐ŸŽฏ so fix the problem..
body {
display : flex;
align-item :  center;
justify-content : center;
max-width : 100%;
height : 100vh;
overflow-x : hidden;
}
  • I Hope it's useful for you
  • Happy Coding ๐Ÿ˜ƒ

Marked as helpful

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