Friday, October 12, 2012

Display text smaller then 12px in Chrome


By default, we can't set the font-size smaller then 12px in Chrome. For changing the font size to below 12px in Chrome, add this declaration into html selector.
-webkit-text-size-adjust:none;
like this:
html { -webkit-text-size-adjust:none; }
then will be OK.

No comments :

Post a Comment