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

Responsive Stats preview card

Mohan Krishnaβ€’ 160

@Mohan823

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


When I made this project I have so much difficulty on overlay colors. after lots of research I get a simple solution. πŸ˜€. I m using here Sass css to improve my Css clarity. Any suggestion in Sass css? except this also WARM WELCOME!! Is anything else much better than this Sass css?

Community feedback

Lucas πŸ‘Ύβ€’ 104,420

@correlucas

Posted

πŸ‘ΎHello Mohan, congratulations on your solution!

Nice code and nice solution! You did a good job here putting everything together. I’ve some suggestions for you:

To get closer to overlay effect on the photo as the Figma Design its better you use mix-blend-mode. All you need is the div under the image with this background-color: hsl(277, 64%, 61%); and apply mix-blend-mode: multiply and opacity: 80% on the img or picture selector to activate the overlay blending the image with the color of the div. See the code bellow:

img {
mix-blend-mode: multiply;
opacity: 80%;
}

Here's a good article explaining these effects with mix-blend-mode: https://developer.mozilla.org/en-US/docs/Web/CSS/mix-blend-mode

✌️ I hope this helps you and happy coding!

0

@VCarames

Posted

Hey @Mohan823, some suggestions to improve you code:

  • The statistics section is a list of statistics, so it should be built using an Unordered List along with a List Items Element.

  • The image serve no other purpose than to be decorative; It adds no value. The Alt Tag should left blank and have an aria-hidden=β€œtrue” to hides it from assistive technology.

  • To get the image to look like the FEM example, you are going to want to use the Mix-Blend-Mode along with the Multiply Value and include a Opacity with the value of 0.8. (Courtesy of @correlucas)

Code:

img {
  opacity: 0.8;
  mix-blend-mode: multiply;
 
}
  • Implement a Mobile First approach πŸ“± > πŸ–₯

With mobile devices being the predominant way that people view websites/content. It is more crucial than ever to ensure that your website/content looks presentable on all mobile devices. To achieve this, you start building your website/content for smaller screen first and then adjust your content for larger screens.

Happy Coding! πŸ‘»πŸŽƒ

0
Vinay Grewalβ€’ 20

@vinaygrewal

Posted

actually i want to ask some question as i am a beginner 1- how to change image color 2-how to place more than one divs in colum without using position attribute 3- how you make only 2 round corner of your banner image thanks for helping brother in advance

0

Mohan Krishnaβ€’ 160

@Mohan823

Posted

@vinaygrewal

  1. the image not changing color itself. the color applied to top of the image with some transparency. in my project, the banner class used to do that which is wrapped picture element.

  2. for that you need to use one of the responsive design like flex or grid. for more refer by googling.

  3. just apply border-radius : 2rem; (replace 2rem with how much you need round corner) in your img tag. That's All. Practice makes a man perfect.

Extra tip: try to get your problem solved by googling. now a days there are so much information the internet has. Not every one know every properties. I m suggesting you to refers docs as much as possible. but not memories yourself. refer whenever you needed.!!!

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