Thomas Vo
Thomas Vo

Reputation: 402

List Item Grid Breaking on Firefox

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

Answers (1)

skparwal
skparwal

Reputation: 1084

You need to change the following css property:

.product-wrap {
    min-height: 254px;
}

to

.product-wrap {
    min-height: 300px;
}

Upvotes: 1

Related Questions