
Design comparison
Community feedback
- P@DasaruPosted 28 days ago
I like your CSS Grid solution to the desktop page. That's a good way to align the cards.
One small problem I found is that you put the header inside of the main tag. Both header and footer tags should be outside of main. Other than that, you did a great job.
Marked as helpful0 - @tflinchPosted 3 days ago
Great work! Consider adopting some modern css techniques like
@layer
to better manage CSS specificity and modularity. Also consider using nth-child(n) to position grid items individually for more precise layout control..card:nth-child(1) { grid-column: 2 / 3; grid-row: 1/2; }
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