There is this old article by John Resig from 2008 in which he describes how browsers of old dealt with problems of sub-pixel rendering. For example if you have 4 floated divs, each with a width of 25%, contained within a parent div of width 50px, how wide are each of the divs? Since mathematically each of those divs is 12.5px wide and there is no such thing as 0.5 pixel some browsers round it down to 12px some round it up to 13px or mixture of both.
Does anybody knows how today, 13 years after, modern browsers deal with this problem?