Results Summary Page created using HTML and CSS

Solution retrospective
Doing this project helped me enhance my front end skills.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @lack21
Great job 👍, but I have some recommendations!
- Remove
width: 100%
from the.container
,.container
which is located indiv
is a block level element which by default takes full space available, sowidth: 100%
does nothing here! - Replace
height: 100vh
tomin-height: 100vh
in the.container
, the difference is that, when you setheight: 100vh
to something, that means it won't be bigger than that, it might cause some problems in the future, so better approach is to setmin-height: 100vh
, like this in case content is overflowing container will adjust to it!
- Remove
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