Design comparison
SolutionDesign
Solution retrospective
- yeah for me i'ts hard to make this project but i do my best , and i'm beginner i start to learn html and css for last week .
- the Css
- no idon't
Community feedback
- @MatPawlukPosted about 1 year ago
Hello there 👋. Congratulations on successfully completing the challenge! 🎉
HTML:
- The HTML structure is well-formed and follows best practices.
CSS:
- The use of
* { margin: 0; padding: 0; box-sizing: border-box; }
for resetting styles is a good practice. - There's a minor typo in the CSS for the font family ('outfit' instead of 'Outfit') that might impact the font loading.
- The class
.car
seems to be a typo, it should be.card
. - There are conflicting margin and width values within the
.box
class, causing layout issues. - The
height: 100%px;
property in.box
has an incorrect format (%px
), it should beheight: 100%;
. - There's a duplication of
text-align: center;
in.box
.
I hope you find this helpful 😄 Above all, the solution you submitted is great !
Happy coding!
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