Browsers
Disable Chrome Minimum Font Size
Using CSS: /*styles for Chrome */ @media screen and (-webkit-min-device-pixel-ratio:0) { Body { -webkit-text-size-adjust:none; } } This can cause issues in that it disables zoom for font size but it does remove the issue of Chrome wrecking layouts by increasing font sizes etc
Read More