Forum Moderators: open
TOPMARGIN and LEFTMARGIN are old proprietary IE.
MARGINHEIGHT and MARGINWIDTH were the old Netscape equivalents.
None are valid HTML 4.01. Not even transitional.
I suggest you update your knowledgebase.
The easiest solution is to use CSS.
inline CSS:
<body style="margin: 30% 10px;">
or add this to your <head>:
<style type="text/css">
body {margin: 30% 10px;}
</style>
<style type="text/css">
<!--
body {margin: 3% 3% 3%;}
body,td,th {
color: #000033;
font-family: Georgia, Times New Roman, Times, serif;
font-size: 11pt;
}
body {
background-color: #000033;
background-image: url();
}
.style2 {color: #000033}
.style3 {color: #FFFFFF}
.style7 {
color: #000000;
font-weight: bold;
font-size: 9pt;
}
.style8 {color: #000033; font-size: 9pt; }
.style9 {font-weight: bold; color: #000000;}
.style14 {font-size: 14px}
.style15 {color: #FFFFFF; font-size: 11pt; }
a:link {
color: #FFFFFF;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #FFFFFF;
}
a:hover {
text-decoration: none;
color: #99CCCC;
}
a:active {
text-decoration: none;
color: #FFFFFF;
-->
</style>