Quote:
Originally Posted by DaveLessnau
@JSWolf: I don't recall seeing actual section breaks (<section>) in the books. Are you including things like <hr/> in there. I'm assuming you added them manually. How do you determine what's a good size for a break?
|
You won't see <section>. Take the eBook
Thief of Time. A section break is
Code:
.paraNoIndent {
display: block;
margin-bottom: 0em;
margin-top: 1em;
text-indent:0em;
}
<p class="paraNoIndent">
As for section breaks, I use...
Code:
hr {
margin-top: 0.9em;
margin-right: 40%;
margin-bottom: 0.9em;
margin-left: 40%;
border-top: 2px solid;
}