Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

NFT Preview Card Component, pure HTML & CSS

VerDanT 280

@NVergil

Desktop design screenshot for the NFT preview card component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


💻 This project was made with pure HTML and CSS

I'm not sure about the css code in this component, but I think it looks good, if anyone has any comments, I would be very grateful to receive them.

Community feedback

Hassia Issah 50,650

@Hassiai

Posted

To center .container on the page using grid, add min-height:100vh; display: grid place-items: center or place-content: center to the body

body{
min-height: 100vh;
display: grid;
place-items: center;
}

body{
min-height: 100vh;
display: grid;
place-content: center;
}

For centering using grid Click here

Use relative units like rem or em as unit for the padding, margin, width values and preferably rem for the font-size values, instead of using px which is an absolute unit. For more on CSS units Click here and here

Hope am helpful.

Well done for completing this challenge. HAPPY CODING

Marked as helpful

1

Please log in to post a comment

Log in with GitHub
Discord logo

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