Si el div del ‘+’ es botón… debemos usar la etiqueta correspondiente.
Recordemos dar una buena semántica al HTML, obviamente esta etiqueta será clickable y para eso están los botones.
export const Card = () => {
return (
<div className="bg-white cursor-pointer w-56 h-60 rounded-lg">
<figure className="relative mb-2 w-full h-4/5">
<span className="absolute bottom-0 left-0 bg-white/60 rounded-lg text-black text-xs m-2 px-3 py-0.5">
Electronics
</span>
<img className="w-full h-full object-cover rounded-lg" src="https://images.pexels.com/photos/1649771/pexels-photo-1649771.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" alt="Headphones" />
<button className="absolute top-0 right-0 flex justify-center items-center bg-white w-6 h-6 rounded-full m-2 p-1">
+
</button>
</figure>
<p className="flex justify-between">
<span className="text-sm font-light">Headphones</span>
<span className="text-lg font-medium">$300</span>
</p>
</div>
)
}
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?