View Single Post
Old 10-30-2022, 06:09 AM   #8
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,734
Karma: 24031401
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by hobnail View Post
That does remove the physical font files but in the css it leaves the font-family referencing those fonts. Can that css cause any problems?
That depends on the rendering engine and the CSS file. CSS files in commercial books usually contain fallback font definitions. For example:

Code:
.copy {
    font-family: "EBGaramond", serif;
    font-size: 0.9em;
    margin-top: 0em;
    margin-bottom: 0em;
    text-align: center;
}
A standard-compliant reader or app should render the text in the fallback font.
Doitsu is offline   Reply With Quote