Submitted over 1 year ago
NFT page using html and css(implementing display:flex first time)
@KristianJ1
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-ACPosted over 1 year ago
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 helpful1
Please log in to post a comment
Log in with GitHubJoin 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