Design comparison
Solution retrospective
please give feedback
Community feedback
- @Enmanuel-Otero-MontanoPosted over 2 years ago
Hello Nevinraju! Congratulations for your solution.
There is a horizontal scroll when the page is displayed on screens with a width less than 400px, I would even dare to say that with a width less than 450px. I'm not sure about the latter since I'm visualizing your solution on the cell phone. The problem is that you set the width of the image (.illu) to 450px for devices with a screen width less than 650px
`@media only screen and (max-width:650px){
body { margin-top: 50px; } .illu{ width:450px; height: 350px; }
that 👆 is what you have implemented and everything is fine until you see it on a device less than 450px wide. You must correct that so that it is 100% responsive. Check it out and tell me if I'm right.
Cheers!
1@newwohhPosted over 2 years ago@Enmanuel-Otero-Montano thank you for your tip i will correct in my next solutions
0
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