Design comparison
Solution retrospective
I need more practice with spacing and organizing the content. I used Grid for the first time in this challenge and I'm still learning.
Any feedback will be accepted. I really appreciate any help you can provide.
Community feedback
- @visualdennissPosted over 1 year ago
Hello Christopher,
Good work overall! Spacing issue is caused mainly by margin: 20% auto; as it can lead to loss of control when resizing. Using flexbox or grid is better practice to center items/sections. So i suggest this:
.wrapper { display: flex; position: relative; min-height: 100vh; justify-content: center; align-items: center; }
Also the background of wrapper and the page seems to be both white, in order to distinguish them you can use box-shadow on the wrapper. Lots of great examples here: https://getcssscan.com/css-box-shadow-examples
Hope you find this feedback helpful!
Marked as helpful1
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