Stats preview card component

Solution retrospective
This is my solution for the challenge "Stats preview card component". Please, any feedback is welcome. Thank you.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @fernandolapaz
Hi 👋🏻, some of this may interest you for future projects:
- To group a set of related items, like the stats in this case, you could use an unordered list
<ul>
.
- It might be good to get used to designing with the
mobile-first
approach (which means designing for mobile first and then for desktop or any other device) as it is widely considered best practice.
- As an alternative to color the image you could simply use the
mix-blend-mode
property:
.image { background-color: var(--clr-primary-soft-violet); } .image img { mix-blend-mode: multiply; opacity: 0.75; }
I hope it’s useful : )
Regards,
Marked as helpful - To group a set of related items, like the stats in this case, you could use an unordered list
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