Use
body {
margin-left: 12pt;
margin-right:12pt;
... [anything else you want in the body css]
}
Or, if you're working on a book converted in calibre, there will be a selector at the top named 'calibre' that's used for the body code:
.calibre {
display: block;
font-size: 1em;
margin-bottom: 0;
margin-left: 12pt;
margin-right: 12pt;
margin-top: 0;
page-break-before: always;
text-align: justify
}
|