up vote 0 down vote favorite
share [g+] share [fb]

if i use

<BODY TOPMARGIN=0 LEFTMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0>

tag like this, will this ensure element i put in my html will displayed the same across all browser? the reason i asking this is because, i was told Internet explorer renedering of the page is slightly different .In other words, if i put img tag in a page and render it on Internet exploerer and render on firefox, maybe the coordinate of the img will slightly different because of margin/page border

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

That isn't HTML. It is a combination of obsolete propriety Netscapisms and obsolete propriety Microsoftisms.

If you want to remove the default spacing around a document add:

html, body {
    margin: 0;
    padding: 0;
}

… to your stylesheet.

That said, a leading cause of differences between browser renderings is poor choice of Doctypes. Also, given the question, you might not be aware of the useful QA tool: The W3C Markup Validation Service.

link|improve this answer
does that mean if i use doctype, i no need to put the above code margin0,padding0? – cometta Aug 22 '09 at 14:43
Doctypes must be the very first thing in the document. Setting the margin and padding must be done in the stylesheet, I linked to a tutorial about using stylesheets above. – Quentin Aug 22 '09 at 15:18
1  
argh! I'm getting flashbacks to 1997! Dark times... – bobince Aug 22 '09 at 21:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.