Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Something I've been wondering for a while whilst doing CSS design.

Are decimal places in css widths respected? Or are they rounded?

.percentage
{
    width: 49.5%;
}

or

.pixel
{
    width: 122.5px;
}
share|improve this question

3 Answers

up vote 43 down vote accepted

If it's a percentage width, then yes, it is respected. As Martin pointed out, things break down when you get to fractional pixels, but if your percentage values yield integer pixel value (e.g. 50.5% of 200px in the example) you'll get sensible, expected behaviour.

Edit: I've updated the example to show what happens to fractional pixels (in Chrome the values are truncated, so 50, 50.5 and 50.6 all show the same width).

share|improve this answer
2  
You're right about percentage values not being rounded themselves, but pixel widths with decimal places and the final result of the percentage calculation will always be rounded to entire pixels :) – MartinodF Nov 29 '10 at 23:17
@MartinodF Thanks for the clarification. Yes, the pixels are rounded, but it's not defined whether they actually round to nearest, floor or ceiling (which is what I meant by "things break down"). – Skilldrick Nov 29 '10 at 23:20
Not necessarily; as far as I know, all browsers internally do subpixel positioning and rendering, with heuristics to pixel-align things that need to have sharp edges (like horizontal and vertical lines). – Zack Nov 29 '10 at 23:20
@MartinodF: I agree with your answer and your comment, but there is nothing in theory that would stop a layout engine to render at say 4x the screen resolution and then sample that via some nice method to fit into the 1x screen resolution. A not.so-great example of a similar concept is how super sampling AA works. – Andras Vass Nov 29 '10 at 23:23
@andras "in theory" is the key word ;) No current browser does AA, they all round positions and sizes before displaying the elements. I agree that it would be at least interesting to see some vendor implement it though! – MartinodF Nov 29 '10 at 23:28
show 8 more comments

Even when the number is rounded when the page is painted, the full value is preserved in memory and used for subsequent child calculation. For example, if your box of 100.4999px paints to 100px, it's child with a width of 50% will be calculated as .5*100.4999 instead of .5*100. And so on to deeper levels.

I've created deeply nested grid layout systems where parents widths are ems, and children are percents, and including up to four decimal points upstream had a noticeable impact.

Edge case, sure, but something to keep in mind.

share|improve this answer

The width will be rounded to an integer number of pixels.

I don't know if every browser will round it the same way though. They all seem to have a different strategy when rounding sub-pixel percentages. If you're interested in the details of sub-pixel rounding in different browsers, there's an excellent article on ElastiCSS.

edit: I tested @Skilldrick's demo in some browsers for the sake of curiosity. When using fractional pixel values (not percentages, they work as suggested in the article I linked) IE9p7 and FF4b7 seem to round to the nearest pixel, while Opera 11b, Chrome 9.0.587.0 and Safari 5.0.3 truncate the decimal places. Not that I hoped that they had something in common after all...

share|improve this answer
Not that I hoped that they had something in common after all... Anyway, this alone deserves a +1. xD – Andras Vass Nov 30 '10 at 0:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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