Responsive Product Card Html Css Codepen Online
We start with a clean structure. Using the tag is better for SEO and accessibility than a generic div .
The grid easily moves to 3 or 4 columns while keeping the clean proportions of your typography intact. 5. Setting Up and Optimizing Your CodePen
<div class="product-card"> <div class="product-image"> <img src="https://via.placeholder.com/300x200" alt="Product name"> <span class="discount-badge">-20%</span> </div> <div class="product-info"> <h3 class="product-title">Wireless Headphones</h3> <p class="product-description">Noise-cancelling, 30h battery life, deep bass.</p> <div class="price-wrapper"> <span class="current-price">$79.99</span> <span class="old-price">$99.99</span> </div> <button class="buy-btn">Add to Cart</button> </div> </div>
</style> </head> <body> <div class="products-grid"> <!-- repeat card block three times as earlier --> <div class="product-card"> <div class="product-image"><img src="https://picsum.photos/id/20/300/200" alt="Headphones"></div> <div class="product-info"> <h3 class="product-title">Wireless Headphones</h3> <div class="product-rating">★★★★☆</div> <p class="product-description">Great sound with noise cancellation.</p> <div class="product-price">$99.99</div> <button class="buy-btn">Add to Cart</button> </div> </div> <!-- Add two more cards similarly --> </div> </body> </html> responsive product card html css codepen
★★★★★ (48 reviews)
View Product
.current-price font-size: 1.25rem;
.buy-btn background: #2c7da0; color: white; border: none; padding: 0.7rem 1rem; border-radius: 40px; font-weight: 600; cursor: pointer; transition: background 0.3s;
We are going to create a product card grid that contains on desktop, two cards on tablet, and one card on mobile. Each card will have:
.product-price font-size: 1.4rem; font-weight: 700; color: #2c7da0; margin-bottom: 1rem; We start with a clean structure
Future research directions may include:
<div class="card-grid"> <!-- CARD 1 - classic sneaker --> <div class="product-card"> <div class="card-img"> <img src="https://cdn-icons-png.flaticon.com/512/2589/2589173.png" alt="modern sneaker" loading="lazy"> <div class="badge">🔥 bestseller</div> </div> <div class="card-content"> <div class="product-category">footwear</div> <h3 class="product-title">Aero Pulse Sneakers</h3> <p class="product-description">Breathable mesh, cloud foam sole. Perfect for daily runs and urban walking.</p> <div class="price-rating"> <div class="price">$89 <small>USD</small></div> <div class="rating"> <span class="stars">★★★★☆</span> <span class="rating-value">4.7</span> </div> </div> <button class="btn-card" aria-label="Add to cart">🛒 Add to cart</button> </div> </div>