Quote:
Originally Posted by paperwhite13
Mixing full size capitals with small caps is a matter of taste, not of grammar, but anyone is free to quote whatever grammar guide they're using to prove their point.
|
It's not a matter of grammar. It's how it's written. The question is how to best implement it in an eBook so it works in all cases.
I have found a way that might work.
In the first CSS file.
Code:
small {
font-size: 0.8333em;
}
in the next CSS file.
Code:
@supports (font-variant: small-caps) {
small {
font-size: 1em;
font-variant: small-caps;
text-transform: lowercase;
}
Now if @supports causes the entire CSS to be ignored in ADE/RMSDK, it won't matter as it's in a separate CSS file.