View Single Post
Old 04-07-2015, 08:55 PM   #2
gbm
Wizard
gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.gbm ought to be getting tired of karma fortunes by now.
 
Posts: 2,195
Karma: 8888888
Join Date: Jun 2010
Device: Kobo Clara HD,Hisence Sero 7 Pro RIP, Nook STR, jetbook lite
Quote:
Originally Posted by pypo View Post
Hi,

I'm using ePub format. I want to apply a font size of 0.8 em to a class. But the computed final style doesn't change. It only changes (gets bigger) when I make the font larger than 1 em, but never changes with I make it smaller than 1 em.

Right now the font computed final style is 22 px. I don't know where the 22 comes from either, since it is not in the stylesheet.

Thanks,
Go to this page for a conversation chart.

Spoiler:
This will give you a base font of 1em with different size fonts for each element. calibre is the body css.
Code:
This will give you a base font of 1em with different size fonts for each element.  calibre is the body css.
.calibre6 {
    display: block;
    font-size: 1em;
    line-height: 1.2;
    margin-bottom: 0;
    margin-left: 3pt;
    margin-right: 3pt;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    text-align: justify
    }
.calibre7 {
    height: auto;
    width: auto
    }
.calibre8 {
    display: block
    }
.calibre9 {
    font-weight: bold;
    line-height: 1.2
    }
.p {
    display: block;
    margin-bottom: 16px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 135px;
    text-align: center;
    text-indent: 0
    }
.p1 {
    display: block;
    margin-bottom: 16px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    text-align: center;
    text-indent: 0
    }
.p10 {
    display: block;
    font-size: 0.83333em;
    margin-bottom: 2px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    text-align: justify;
    text-indent: 0
    }
.p11 {
    display: block;
    font-size: 0.83333em;
    margin-bottom: 2px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    text-align: justify;
    text-indent: 8px
    }

bernie
gbm is offline   Reply With Quote