Steven Grindle created this html page with a linked external style sheet on 27 Jan 2008 for the purpose of demonstrating how to force FF2 and IE7 browsers to render the html tags <body>, <p>, <ol>, <ul>, <blockquote> to my liking. If you like it, use it and reference me. I preview my designs using Firefox 2 and Internet Explorer 7 only.
First and foremost, I zero all padding and margin styles as suggested by Charles Wyke-Smith in his excellent book "Stylin' with CSS: A Designer's Guide". Then I can define the margins and padding of paragraphs, lists and blockquotes.
You can copy/paste the .css code below. By clicking here you can see what this page looks like without the styles; e. g. the way a brower would display them by default.
* {margin:0; padding:0;}
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 0.9em;
background-color: #EEEEEE;
color:#000066
}
p {
padding: 3px 5px;
margin: 0px;
}
ol {
padding-right: 10px;
padding-left: 10px;
margin-right: 5px;
margin-left: 5px;
list-style-position: inside;
}
blockquote {
font-size: 0.9em;
color: #009900;
margin: 1px 30px;
}
It is not perfect but it helps me. If you can use it go ahead. The end.