Quote:
|
Originally Posted by ANGELO DUNDEE
<body bgcolor="orange" topmargin="0" leftmargin="0"
rightmargin="0" bottommargin="0" border="0"
cellpadding="0" cellspacing="0" width="100%" height="100%" >
</body>
|
I might suggest that you get rid of width="100%", height="100%", and border="0", cellpadding="0" and cellspacing="0", as they pertain to tables and such. So, I'm suggesting you put this in, instead:
HTML Code:
<body bgcolor="#FF9900" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" scroll="no">
or better yet
HTML Code:
<style type="text/css">
<!--
body {
background-color:#FF9900;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
<body scroll="no">
The above uses CSS instead. If you're looking to validate your page(s), CSS is helpful because you run into less errors. Sorry, I'm not sure there is a CSS attribute for scrolling.
Hope it helps,
Micah
Last edited by fancymoustache; 06-29-2005 at 02:58 PM..
|