Stats preview card component using Flexbox

Solution retrospective
Hello Frontend Mentors let me know what else i can improve on this project. Thanks much!!!
Please log in to post a comment
Log in with GitHubCommunity feedback
- @Hassiai
There is no need for aria-hidden in the img tag, the image is not something that must be hidden from those who use screen readers. Give the alt a value, the value for the alt is the description of the image.
For the color of the image give .img_container a background-color of soft violet and give the img a width of 100%, height of 100%, object-fit of cover , mix-blend-mode of multiply and opacity:0.8.
.img_container{ background-color: hsl(); } img{ width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; opacity: 0.8; }
Hope am helpful.
Well done for completing this challenge. HAPPY CODING
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