Submitted about 2 years ago
Simple NFT preview card component, using a little bit of flexbox.
@sebix0nus
Design comparison
SolutionDesign
Community feedback
- @faha1999Posted about 2 years ago
Hello, Sebastian Congratulations on finishing this project. It's lovely and great on the whole! Just a little tip:
- You might want to use semantic tags like the
<main>
to wrap your code, instead ofdiv
. like
<main class="wrapper"> </main>
This would help improve accessibility.
-
add
alt="equilibrium"
attribute inimg
. This would help improve accessibility. -
use modern CSS reset
https://piccalil.li/blog/a-modern-css-reset/
-
add the below code to the body. It will center everything
body { justify-content: center; align-items: center; display: flex; height: 100vh; flex-direction: column; }
- remove
margin: 5vw auto;
inwrapper
it's not necessary anymore.
I hope it will work. Happy coding.
Marked as helpful0 - You might want to use semantic tags like the
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