It has some difficulty scaling HTML elements. In FF or Chrome, take a look at (very, very simple, small code):
http://jsfiddle.net/92wHQ/4/
Select 150% from the drop-down list. The black and white gradient cabinet will scale to 150% of its original size. Now that it is scaled, notice that a horizontal scrollbar appears and the vertical scrollbar expands to fit the new, larger, scaled height and width.
Now switch from 150% to 50%. The gradient scale does scale to 50%, but note that the (vertical) scrollbar does not shrink to fit the new, smaller, scaled height. Instead, there is empty empty space in the gradient box.
Why do browsers update scrollbars to scale more than 100%, but not less than 100%? How can I get the same behavior for less than 100%, as I do with more than 100%? I do not want this gap.
source share