
Solution retrospective
Its my first challenge and I'm very Excited for the further challenges in future
Please log in to post a comment
Log in with GitHubCommunity feedback
- @denielden
Hello Jai, You have done a good work! 😁
Some little tips to improve your code:
- add
main
tag and wrap the card for improve the Accessibility - remove
container
div and addbackground: hsl(212, 45%, 89%)
to the body - also you can use
article
tag instead of a simplediv
to the container card for improve the Accessibility - remove all
margin
from.content-container
class because with flex they are superfluous - use flexbox to the body to center the card. Read here -> best flex guide
- after, add
min-height: 100vh
to body because Flexbox aligns child items to the size of the parent container - instead of using
px
use relative units of measurement likerem
-> read here
Keep learning how to code with your amazing solutions to challenges.
Hope this help 😉 and Happy coding!
Marked as helpful - add
- @ZenitsuAg
Hello Jal, you code is really amazing, neat and also readable. Here are some tips to help you improve your code.
- It's better to wrap the entire code within a main tag.
- It's also better to use
max-width
andmax-height
properties instead ofwidth
andheight
for responsive purposes.
Happy Coding
Marked as helpful
Join 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