My page code has the body tag attributes
<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">
When I validate this code it states that there margin properties aren't acceptable. I could use the code below in a stylesheet though I was concerned about the amount of cross browser support it has?
body { margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; }
If anyone can give me some advice I'd appreciate it.
<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">
When I validate this code it states that there margin properties aren't acceptable. I could use the code below in a stylesheet though I was concerned about the amount of cross browser support it has?
body { margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; }
If anyone can give me some advice I'd appreciate it.