Andrés Gutiérrez Ramírez• 2,470
@AGutierrezR
Posted
Hello there 👋. Good job on completing the challenge!
I have some suggestions about your code that might interest you.
HTML:
- Try not to use the
<main>
tag as a component, use it as a container that will wrap the component in question.
CSS:
- To fit the frame into the screen and leave space on the sides you could add a
padding-left: 25px
andpadding-right: 25px
to the<main>
tag, this will prevent the content to touch the side of the screen.
Marked as helpful
0