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

Fylo-Data-Storage-Component

@thanhsHai

Desktop design screenshot for the Fylo data storage component coding challenge

This is a solution for...

  • HTML
  • CSS
2junior
View challenge

Design comparison


SolutionDesign

Community feedback

@weldu0

Posted

👋 Hey, @thanhsHai! I have a few suggestions for your project:

Use <picture> for Responsive Images

<picture>
  <source srcset="images/desktop.jpg" media="(min-width: 48rem)">
  <source srcset="images/mobile.jpg" media="(max-width: 47.99rem)">
  <img src="images/desktop.jpg" alt="Product image">
</picture>

The above markup tells the browser to use images/mobile.jpg if the viewport width is less than 48rem. Otherwise, it will use images/desktop.jpg as the default image.

If you want to learn more about <picture>, here is greet doc from MDN. 📚

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