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

Galih Arizzaβ€’ 230

@chadittya

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


The hardest part I found when building this project is, I can't using Tailwindcss background image in <div> at Vite framework.

I try to follow Tailwindcss's docs, but the image not showing. I ended up, importing the image import bgImageProductDesktop from "./assets/images/image-product-desktop.jpg"; then call it on <img> tag.

I want to know if what I did was correct or if I should using background image in <div> tag ?

Thank you

Community feedback

@MelvinAguilar

Posted

Hello there πŸ‘‹. Good job on completing the challenge !

I have some suggestions about your code that might interest you.

  • The <img> tag should be used when the image is a crucial part of the content and its meaning is crucial to understand the context, while the background-image property should be used as a decorative element that enhance the design of the website.

    In my opinion, the product image is important content and not just decoration like an icon, it gives more context about the product being discussed throughout the component. The <img> tag is the most appropriate.

HTML πŸ“„:

  • Use the <main> tag to wrap all the main content of the page instead of the <div> tag. With this semantic element you can improve the accessibility of your page.
  • The <h1> is the most important heading on the page, In this challenge the perfumer's name can be considered like the title of the page, so it should be the <h1>
  • You can use the <picture> tag when you have different versions of the same image πŸ–Ό. Using the <picture> tag will help you to load the correct image for the user's device saving bandwidth and improving performance. You can read more about this here πŸ“˜.
  • You could use the <del> tag to indicate the price that was before the discount. Additionally, you can use a sr-only class to describe the discount. This will help screen reader users to understand that the price was discounted.

    Example: <del><span class="sr-only">Old price: </span>$169.99</del>

Alt text πŸ“·:

  • The alt attribute should not contain underscores or hyphens, it must be human readable and understandable.
  • The alt attribute should not contain the words "image", "photo", or "picture", because the image tag already conveys that information.

    If you want to learn more about the alt attribute, you can read this article. πŸ“˜.

I hope you find it useful! πŸ˜„ Above all, the solution you submitted is great!

Happy coding!

Marked as helpful

1

Galih Arizzaβ€’ 230

@chadittya

Posted

@MelvinAguilar Hello Melvin, thank you very much for your help. Its help me alot. I already fixed my code referring your feedback. Again, thankyou

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