Although I\'m not new to the idea of responsive design I have experienced a very troublesome thing...
I have decided to completely move to rem
units, but I
So... I have switched back to em
untits. Except few (minor) glitches in IE9 (which are well known subpixel problems) everything is perfect in ALL browsers. Moreover, as before rem
issue, I have no problem with media queries
which also use em
units. Sadly, it seems that rem
units are not yet stable enough to use them across existing web browsers. Case closed...
If you're wishing to continue use 1rem = 10px have you tried –
html {
font-size: 10px;
}
instead of
html {
font-size: 62.5%;
}
does this solve the issue?