Responsive Product Card Html Css Codepen 【ULTIMATE Playbook】

.product-info h2 { font-size: 18px; margin-bottom: 10px; }

@media (max-width: 480px) { .product-card { flex-direction: column; } .product-image { width: 100%; height: 200px; } .product-info { text-align: center; } } responsive product card html css codepen

<div class="product-card"> <div class="product-image"> <img src="product-image.jpg" alt="Product Image"> </div> <div class="product-info"> <h2>Product Name</h2> <p>Product Description</p> <span>$19.99</span> </div> <button>Add to Cart</button> </div> .product-info h2 { font-size: 18px