Design comparison
Solution retrospective
It was very fascinating task which shows me how much i know It's not completely responsive but it's responsive
Community feedback
- @visualdennissPosted over 1 year ago
Great job in completing the challenge successfully! Your solution looks great overall, the design implementation is simple neat.
I'd say avoid using margins to center the container as they can effect other elements on the page layout and not scale well. remove these: margin: 10rem 20rem; height: 100%;
a better practice would be to use flexbox for centering like so: body { background-color: black; color: white; width: 100%; height: 100vh; font-family: 'Overpass', sans-serif; display: flex; align-items: center; justify-content: center; }
If this was helpful, feel free to mark it as helpful! Good luck on upcoming projects!
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