Say, I have the following CSS rule defined:
.className {
font-size:0.89em;
}
My question is, how \"deep\" into fractions can I go while spe
It should be kept in mind though, that fractional em values, like all floating point numbers, are susceptible to rounding error.
I found that out while setting my media query boundaries, where one max-width was 0.00001em away from another min-width, and it was rounded up and both queries were activated. After changing the difference to 0.001em the queries worked as expected, exclusively.