I would suggest getting rid of the paragraph tags.
Eh.
IE and FF handle the P tags differently.
Well yes, but IE and Fx handle most things differently. The only difference that should be an issue here is that of default margins and padding, which can be overridden fairly easily:
Code:
* {
margin: 0;
padding: 0;
}
... and then built back up where necessary.
So I would change all the P tags to BR.
Now this, folks, is a Very Bad Suggestion®. <p> and <br> are semantically very different. <p> denotes a paragraph; <br> denotes a line break within a paragraph or other block-level element, such as for lines in a poem.
Bookmarks