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 page using html and css(implementing display:flex first time)

Kristian 170

@KristianJ1

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


let me know if u have any tips to give, if u have any suggestions on the image hover let me know(i had to try for some time to find something suitable)

Community feedback

@Kevin-AC

Posted

Hola @KristianJ1, te comparto algunos sugerencias para mejorar tu pagina:

🔹puedes centrar todo el contenido aplicando a body esto 

body{

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

🔹elimina el margen que tienes de 8px

🔹puedes poner background-color: hsl(217, 54%, 11%); directo en el body 

🔹para solucionar de manera general problemas con margen y padding puedes usar

*{

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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