|
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.
|