Thread: HTML question
View Single Post
Old 06-03-2001, 04:42 AM  
Lord Assmore
Confirmed User
 
Join Date: Mar 2001
Location: The Periphery
Posts: 588
It doesn't work with Opera, because those attributes are NS/IE proprietary stuff. Opera only recognizes the correct W3 HTML standard. So you have to use CSS to set the document margins to zero width.

Add this

style="margin: 0px"

to your BODY tag, or

<style type="text/css">
<!--
BODY {margin: 0px}
-->
</style>

to your HEAD tag.
Lord Assmore is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote