Just html and css

Solution retrospective
Am really proud on how the padding works on the box.
What challenges did you encounter, and how did you overcome them?The profile pic of Greg Hooper was really overflowing from the box, that the reason for the height to be too much
What specific areas of your project would you like help with?I would really love any suggestions from anyone, and also the dark line that was created on the left and bottom, how was it created?
Please log in to post a comment
Log in with GitHubCommunity feedback
- @Douoo
Hi Oseremen, first off, I think you did a great job putting this together! If there is one thing I would change, it is centering the card in the middle and adding a background shadow to your container (card). Something like:
body{ display:grid; place-items:center; min-height: 100vh }
Making display property
grid
- transforms the element into a grid container. A grid container allows you to arrange its child elements into a structured grid layout. Then theplace-items:center
property centers the grid items both horizontally and vertically within the grid container. Lastly themin-height: 100vh
sets the minimum height of the element to 100% of the viewport height (vh stands for viewport height). This ensures that the element's height will always be at least as tall as the visible part of the browser window, making it useful for creating full-height sections or components.Hope this helps you out a bit!
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