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

Product Preview Card Component - Responsive

@Sudharshan-24

Desktop design screenshot for the Product preview card component coding challenge

This is a solution for...

  • HTML
  • CSS
1newbie
View challenge

Design comparison


SolutionDesign

Solution retrospective


It is an interesting challenge I loved it a lot by doing this challenge. However, I am unable to make the mobile images responsive manner.

Solved image issue for mobile view :)

Community feedback

@cgrkzlkn

Posted

Great job! You can use picture and source elements for responsive images:

<picture>
  <source
    srcset="./images/image-product-mobile.jpg"
    media="(max-width: 375px)"
  />
  <img class="perfume-image" src="./images/image-product-desktop.jpg" alt="Perfume"/>
</picture>
0

@Sudharshan-24

Posted

@cgrkzlkn thank you for your suggestion Cagri.

1

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