I'm struggling to figure out how it's a benefit to use REM's with a pixel fallback. The app that I'm working on has REM's declared as approximately 10px's by setting the font-size on the html as such;
html {
font-size: 62.5%; /* Sets up the Base 10 stuff */
}
Than in my CSS file I would assign font-sizes like this.
.myClass {
font-size: 18px;
font-size: 1.8rem;
}
Obviously the pixel definition is there as a fallback if there is no support for CSS rem's. The question is, what is the point of even using REM's if they equate to the same size as pixels, why not just use pixels instead?