View Single Post
  #3 (permalink)  
Old Jun 28th, 2006, 15:20
moojoo's Avatar
moojoo moojoo is offline
Moderator
Join Date: Aug 2005
Location: Texas
Posts: 2,020
Blog Entries: 1
Thanks: 0
Thanked 33 Times in 33 Posts
Re: Body ignoring <p> tag

Not sure why the paragraphs are giving you trouble but I would change the following:

body {margin:0px; padding:0px; font: 0.7em verdana, arial, sans-serif;

to:

body {
margin:0;
padding:0;
font-size:0.7em;
font-family:verdana, arial, sans-serif;
}

You don't need to specify a value on any element with a value of 0. Sounds teeny but in the long run will save you typing time etc.
Reply With Quote