This seems to work (Calibre, Sigil, ADE):
Instead of
.author, .title, .subtitle, .editor {
display: table;
width: 100%;
}
use
.author {
display: table;
width: 100%;
height: 21%
}
.title {
display: table;
width: 100%;
height: 21%
}
.subtitle {
display: table;
width: 100%;
height: 21%
}
.editor {
display: table;
width: 100%;
height: 35%
}
You can delete the height in the paragraphs but you still need
html, body {
height: 98%;
}
George
|