|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
.parent-box { display: flex; flex-wrap: wrap; margin: -6px -6px; } .product-card { margin: 6px; background: #f00; } .child { width: calc(33.33% - 12px); color: #f00; } img { width: 100%; height: 100%; } |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<div class="parent-box"> <div class="product-card child"> <img src="https://via.placeholder.com/387x250" alt=""> </div> <div class="product-card child"> <img src="https://via.placeholder.com/387x250" alt=""> </div> <div class="product-card child"> <img src="https://via.placeholder.com/387x250" alt=""> </div> <div class="product-card child"> <img src="https://via.placeholder.com/387x250" alt=""> </div> <div class="product-card child"> <img src="https://via.placeholder.com/387x250" alt=""> </div> </div> |