On my webpage, I have organized my div elements using inline-block properties. Strangely, Firefox is adding extra spacing between two specific divs, while Safari and Chrome display the design consistently.
Check out this example here.
#main {
display: block;
}
#sub11, #sub12, #sub21, #sub22, #sub31, #sub32 {
display: inline-block;
background:red;
padding:0;
//margin-right:-4px;
margin-top:3px;
margin-bottom:3px;
}
In Firefox, there seems to be excessive space between the "GHI" and "TRY" rows, while the "ABC" and "GHI" rows are consistent with the others following "TRY".