Responsive HTML and CSS - NFT Preview Card

Solution retrospective
Hey everyone! I'd appreciate it if you gave some feedback on my solution with regards to the HTML and CSS, or possibly anything you would've done differently :) Have a lovely day!
Please log in to post a comment
Log in with GitHubCommunity feedback
- @MarcusTuliusCiceron
Hi congrats completing this challenge, Here my comment regarding your code: -In the HTML you could wrap everything into a main landmark to improve accessibility of your code
<body> <main> </main> </body>
-when you're doing style reset don't forget to also reset styles for your pseudo element
* , *::after, *::before{ padding: 0; margin: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
-when you're setting height or width of an element, try to use one of the following unit: vh, vw, %, vmin, ... This will help make your layout responsive in bigger project
Hope those tiny advice from beginer to another will help you, happy coding :D
Marked as helpful
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