View Full Version : initial space on page help
zduck
09-24-2002, 01:00 AM
I've got a page in an iFrame but it places a good sized blank space before any content on the page. I guess it does this with any page but I need to remove it. Is there a way to do this?
It is sort of like a default top padding for the page.
adios
09-24-2002, 01:25 AM
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
Supports older browsers as well. CSS:
<style type="text/css">
body {
margin: 0px;
}
</style>
Support varies; will eventually be the standard.
http://www.idocs.com/tags/document/_BODY_TOPMARGIN.html
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.