Design comparison
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
- @0xabdulPosted over 1 year ago
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 helpful0 -
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