Product Preview Card Component

A responsive card component that previews a mockup product which is a type of Perfume, with displayed discounted costs, challenge by Frontend Mentor.

svelte
tailwindcss
vite

Previews

Preview image #1Preview image of project Product Preview Card Component
Preview image #2Preview image of project Product Preview Card Component

The challenge

Users should be able to:

This was pretty difficult to make responsive without it moving frantically. I enjoyed the process though.

What I learned

I learned about the <picture> tag in HTML. How crazy I’ve been using same <img> tags but just use hidden and block when appropriate sizes.

<picture>
  <source srcset="/perfume-desktop.jpg" media="(min-width: 640px)" />
  <img src="/perfume-mobile.jpg" alt="Perfume" class="h-full" />
</picture>