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 landing page using media queries

@sam-mantey

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


Hello Community I just finished my first newbie challenge. My question is, for a responsive page, which version of the page do you build first? The mobile or the desktop.

Community feedback

@MelvinAguilar

Posted

Hi @sam-mantey ๐Ÿ‘‹, good job for completing this challenge! ๐ŸŽ‰

You can use mobile-first approach because you would already have a responsive page from the beginning, in my opinion it is easier, congratulations for using it..

Tips:

  • You can use <picture> tag when you need to change the image on different viewports, using this tag will prevent the browser from loading both images, saving bandwidth. More information here

Example:

<picture>
   <source media="(max-width: 625px)" srcset="./images/image-product-mobile.jpg">
   <img src="./images/image-product-desktop.jpg" alt="your_alt_text" class="product-img">
</picture>
  • You could use the <del> tag to display the old price:
<del class="old-price">
   <span class="sr-only">Old price: </span>$169.99
</del>

Note that I added the <span> with the sr-only class to the del element, this will provide more information about what your old price is about.

The sr-only class is a class that you can add to hide content visually but is only visible to screen-readers:

.sr-only {
  clip: rect(0 0 0 0); 
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; 
  width: 1px;
}

More information here

I hope those tips will help you.

Good Job and happy coding !

Marked as helpful

1

@sam-mantey

Posted

@MelvinAguilar Thank you so much. I have learned a lot from you today. I will make the necessary changes to my solution.

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