Legacy RMSDK a.k.a. “eBooks’ IE6 but way way way more idiot” treats rem as em.
In other words, if you’ve got
html {
font-size: 62.5%; /* 10px */
}
body {
font-size: 1.6rem; /* 16px */
}
p {
font-size: 1.6rem; /* 16px */
}
What you get is
html {
font-size: 100%; /* 16px, cos’ obviously, it is overriden and !important won’t make a difference */
}
body {
font-size: 1.6em; /* 25.6px */
}
p {
font-size: 1.6em; /* 40.96px */
}
And here’s the result (on the right)
How come this idiot can’t cope with calc() but greedily accept rem values?
Legacy RMSDK a.k.a. “eBooks’ IE6 but way way way more idiot” treats
rem
asem
.In other words, if you’ve got
What you get is
And here’s the result (on the right)
How come this idiot can’t cope with calc() but greedily accept
rem
values?