Design comparison
Solution retrospective
I loved working on this challaenge as it helped me flex my grid layout knowledge through application. Any feedback is welcome as it still has some (minor) differences with the original. Can any one suggest to me a good resource for learning clamp() in css. As I liked the idea of how it works. Thanks
Community feedback
- @DarkstarXDDPosted 11 months ago
Looks good. Couple of things I noted.
- The text in "Why us" section should be list items.
<h2>Why Us</h2> <ul> <li>Tutorials by industry experts</li> <li>Peer & expert code review</li> <li>Coding exercises</li> <li>Access to our GitHub repos</li> <li>Community forum</li> <li>Flashcard decks</li> <li>New videos every week</li> </ul>
- I think it's much more cleaner if you put the
padding: 0
andmargin: 0
in the*
, instead of.container
.
* { padding: 0; margin: 0; box-sizing: border-box; }
- You should use
rem
when defining font-sizes instead ofpx
. source
1@rayaattaPosted 11 months agoThanks for the feedback I didn't use
* { Margin:0; Padding:0; }
because I would have to re-write the margins and padding for everything. Talking about using pixels I am currently trying to learn clamp(). Thanks for the correction on the why us section. Your feedback is invaluable. @DarkstarXDD
1
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