I\'ve taken to using rem\'s to size fonts in recent projects, then using px as a fallback for older versions of IE.
rem
I\'ve also been setting a font
font
Try:
html { font-size: 62.5%; } /* font-size: 62.5% now means that 1.0 rem = 10px */ *{font-size: 1.4rem;line-height: 1.6rem; } body { background: #fff; font-family: arial; }
Seems to look better on refreshing the page :)
FIDDLE