Reputation: 402
I'm working on this website that generates a grid based on a list of divs. But the grid is breaking on Firefox and I've been digging for hours but still can't make it work. I've tried changing the width of the item, rearranging margin, padding, display, but none of them seems to work. Please help me. This is the URL http://sandulsc.nextmp.net/products/blinds-shades/natural-shades.html
Upvotes: 0
Views: 79
Reputation: 1084
You need to change the following css property:
.product-wrap {
min-height: 254px;
}
to
.product-wrap {
min-height: 300px;
}
Upvotes: 1