Thread: css margin: 0;
View Single Post
Old 18-06-2003, 06:57   #1 (permalink)
Brown
volkswagen yellow & gold
 
Brown's Avatar
 
Join Date: Apr 2003
Location: london, england.
Posts: 6,191
css margin: 0;

ok. so we're not allowed to put anything in our body tag anymore:

<body topmargin="0" leftmargin="0">

so instead we put this in our style sheets:

body {
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
}

however, opera (5, 6 + 7) doesn't agree with this.

camino, safari, ie, mozilla and even netscape 6 like it however (pc and mac).

any thoughts guys and gals?
  Reply With Quote