Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Stat card component using GRID

@ItsShibam

Desktop design screenshot for the Stats preview card component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


Feel free to give feedback. Thank You.

Community feedback

Hassia Issah 50,670

@Hassiai

Posted

Give the alt attribute in the img a value. The value of the alt attribute is the description of the image. For decorative images like icons, there is no need to give it an alt value, for more on alt attribute Click here.

To center .card on the page using grid, ad min-height: 100vh to the body.

For the color of the image, in the html wrap the picture tag <picture> in the div and give it a class. <div class=" stat-image"><picture><img></picture></div> . Give .stat-image a background-color of soft violet, give the img a width 0f 100%, height 0f 100%, object-fit: cover, mix-blend-mode: multiply, opacity: 0.8 to the img.

.stat-image{
  background-color: hsl();
}
img{
width: 100%;
height: 100%;
object-fit: cover;
mix-blend-mode: multiply;
opacity: 0.8;
}

In the media query, either giver .card-content a grid-column of 1/2 and increase the font-size of p.

Hope am helpful.

Well done for completing this challenge. HAPPY CODING

Marked as helpful

0

Please log in to post a comment

Log in with GitHub
Discord logo

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