Quote:
Originally Posted by theducks
Code:
font-family: "minya-it";
font-weight: normal;
font-style: normal;
Your problem was you said it was a Normal font in your @font
|
This. With Adobe Digital Editions, IIRC, an @font rule only gets matched if the font-weight and font-style properties in the current CSS are a close or exact match for the corresponding values in the font declaration. Otherwise, the @font rule doesn't match, and it falls back to the inherited font from the parent element if applicable, or the default font otherwise.
You could also define the bold tag as using font-weight: normal and the italic tag as using font-style: italic, with the caveat that if the user changes the font, they'd lose all formatting that way.