Design comparison
SolutionDesign
Solution retrospective
Second project .I measured my time developing this exercise and the result was 1h/8mins/32sec. I think I am improving my skills. Any questions or advice you have, feel free to comment.
Community feedback
- @pRicard0Posted about 1 year ago
CSS tips
- Why are you using
transform: translateY(200px);
? You do not have to use that. You are unable to center the card because your body tag does not occupy the entire screen. You need to add the following code:
body { min-height: 100vh; }
- You can make your button look more like a button with
cursor: pointer
Marked as helpful1 - Why are you using
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