<div style ="float:left;height:20%;width:70%;"</div>     <div style ="float:right;height:20%;width:30%;">         </div>

In chrome the two divisions are in same line .But there is a small gap between the two divs.But in firefox there is no gap.Why is this happening.Any solution for this?

link|improve this question

71% accept rate
We're going to need the container for these two divs to reproduce this issue as your widths and heights are taking a percentage of their parent's width and height. – MoarCodePlz Jul 7 '11 at 17:02
feedback

1 Answer

up vote 4 down vote accepted

Chrome rounds all widths to integer pixels. Unless your container width is divisible by 10, this means that the float widths will get rounded so they're not actually 30 and 70 percent of it, and as a result there can be space between them.

Gecko does layout calculations in fractional pixels, so it can represent the widths much more exactly, and snap to the pixel grid at paint time, avoiding this sort of seaming.

Your possible solutions are to make sure your container has a width that's a multiple of 10px and to complain to the WebKit team about the round-to-integer-pixels behavior. Or both.

link|improve this answer
Yes it solved my problem .Thanks alot – Jinu J D Jul 8 '11 at 5:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.