I noticed that some stylesheets have something like this:
body { font-size: 62.5%/1.2em; }
I received a "unexpected token /" warning when I wrote this on NetBeans. And if I changed the value of EM, let's say
body { font-size: 62.5%/1em; }
The calculated font size remains 16px.
My question is: is it compatible with something like that? And how to calculate the actual font size?
source share