NFT Card using grid and flexbox

Solution retrospective
This was a relatively easy project, any suggestions to improve are welcome.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @AdarshRai0
Browser has a default style sheet called User Agent Stylesheet which adds margin to headings and paragraphs and applies font properties to all elements.
I usually reset all the styles and I start from scratch.
Here is my styles.css
:root{ /* colors and fonts */ --font: "Montserrat", sans-serif; --white: #ffffff; } *{ margin: 0; padding: 0; box-sizing: border-box; } html{ font-size: 62.5%; } html, body{ height: 100%; } body{ width: 100%; font-family: var(--font); } /* Other rule-sets */
- @AdarshRai0
Hi Bismeet congratulations on your new challenge!
I took a look at your code and I have some tips for you.
The ripple background was missing, in this case it is better to import it in the body with background-image and put a media query to change mobile / desktop or use the <picture> tag in the HTML.
I saw that you used id as a selector, but a good practice would be to handle the entire design with classes and leave the id for forms and Javascript.
Congratulations, since your first project, your challenges have gotten better and better.
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