Submitted over 1 year ago
Responsive nft preview card component using HTML and CSS
@LanXhan
Design comparison
SolutionDesign
Solution retrospective
Hello! Frontend Mentor community! Day 6 and this is my solution for nft preview challenge for my daily challenge to code and learn more about front-end development.
Happy to hear feedback and advice!
Community feedback
- @0xabdulkhaliqPosted over 1 year ago
Hello there π. Congratulations on successfully completing the challenge! π
- I have other recommendations regarding your code that I believe will be of great interest to you.
CSS π¨:
- Looks like the component has not been centered properly. So let me explain, How you can easily center the component without using
margin
orpadding
.
- We don't need to use
margin
andpadding
to center the component both horizontally & vertically. Because usingmargin
orpadding
will not dynamical centers our component at all states
- The another reason why your component is not being placed on center is the incorrect usage of
width
andheight
, You want to usemin-height: 100vh
. Since you already usingFlexbox
layout in css, So take a look the example code
body { min-height: 100vh; }
- Now remove these styles, after removing you can able to see the changes
body { margin: 0 auto; margin-top: 20vh; }
- Now your component has been properly centered
.
I hope you find this helpful π Above all, the solution you submitted is great !
Happy coding!
0 - @NehalSahu8055Posted over 1 year ago
Hello Coder π.
Congratulations on successfully completing the challenge! π
Few suggestions regarding design.
- For proper positioning of
nft eye(view-icon)
delete the commented line and replace transform with the below code
.img-overlay img { position: absolute; /* left: 65px; */ /* top: 50px; */ transform: translate(7.5rem,7.5rem); }
I hope you find this helpful.
Happy codingπ
0 - For proper positioning of
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