View Single Post
Old 06-24-2011, 04:17 AM   #1
Bertrand
Zealot
Bertrand began at the beginning.
 
Posts: 118
Karma: 10
Join Date: Dec 2008
Location: France
Device: None
Incorrect line-height property in calibre CSS ?

When converting with calibre, all line-height properties are written like this :

line-height: 1.2;

Shouldn't it be

line-height: 1.2em;

Code:
.calibre {
    display: block;
    font-size: 1em;
    line-height: 1.2;
}
.calibre4 {
    font-size: 1em;
    font-weight: normal;
    line-height: 1.2;
}
etc
Bertrand is offline   Reply With Quote