Quote:
Originally Posted by Philogger
Wow! That's pretty impressive.
Yeh, it looks better. Cleaner.
I'll have a look at it for sure.
Thanks
P
|
If there is not a lot of complex formatting, save as text and it's fairly easy to work with from there. You have to do a search/replace to put a <p></p> around every line. Then you can change that as needed and you can work on creating the CSS based on what needs to be done. I feel it would be a lot easier starting with a text format then cleaning up that horrible mess.
Code:
body {
widows: 1;
orphans: 1;
margin-top: 0;
margin-right: 0;
margin-bottom: 0;
margin-left: 0;
text-align: justify;
}
p {
margin-top: 0;
margin-bottom: 0;
text-indent: 1.2em
}
That is the CSS code I would start with. It gives you a good baseline and you don't have to add a class to any <p> that's just a regular paragraph with an indent.