Quote:
Originally Posted by rcentros
Would this be an actual image and wouldn't that increase the size of the book by quite a lot? Is this particular book there would probably be a over a thousand of these. Would the this code be applied at the top of the .css style sheet and just automatically work?
Thanks. Looks interesting, but not sure how I would apply it.
|
What that code does is give you a 2em blank space followed by a non-indented paragraph. What I do is the following.
Code:
<hr/>
<p class="TX1">“Look who I found,” said Julia cheerfully as they stepped into the Great Room.</p>
[code]hr {
margin-top: 1em;
margin-right: 40%;
margin-bottom: 0.9em;
margin-left: 40%;
border-top: 2px solid;
}
.TX1 {
margin-top: 0;
margin-bottom: 0;
text-align: justify;
text-indent: 0;
}[/quote]
What the code does is make a 1em blank space followed by a 20% long 2px wide line and then a .9em blank space. The next paragraph is not indented. It works well to denote section breaks.