开发者

Rendering of HTML in Firefox and Chrome

开发者 https://www.devze.com 2023-03-18 05:54 出处:网络
<div style=\"float: left; height: 20%; width: 70%;\"</div> <div style=\"float: right; height: 20%;
<div style="float: left;
            height: 20%;
            width: 70%;"</div>
<div style="float: right;
            height: 20%;
            width: 30%;">         </div>

In Chr开发者_如何学编程ome 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?


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号