
Design comparison
SolutionDesign
Community feedback
- @khatri2002Posted 2 months ago
Hi @valonkraja!
The developed solution looks great!
I just have a minor suggestion that’s worth fixing for a smoother experience.
Horizontal Scroll on Mobile (375px Width)
On mobile resolution, there's a slight horizontal scroll issue.
- Why? Even though
width: 100%
is applied, the client images are exceeding the container (.clients
). - This causes them to overflow and push the layout, creating unnecessary scrolling.
To prevent the overflow issue, reduce the size of the images when viewed on smaller screens.
CSS
@media (max-width: 640px) { .clients img { width: 4rem; /* Adjust as needed */ } }
You're doing an awesome job! Keep up the great work! 🚀
0 - Why? Even though
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