I'm setting up an extremely simple PPV landing page, which will pop at 750*550. Filled with a 550px tall image, so it should just exactly fill the open window. But for some reason Safari and FF add a thin white margin underneath the picture, which triggers scroll bars. I already canceled out the standard <body> tag margin of 8 pix. Here is my code:
How can I get rid of the white bottom, i.e. the scroll bar?
HTML:
<style type="text/css">
body {
background-color: #ffffff;
margin: 0px;
padding: 0px;
}
img {
border-style: none;
margin: 0px;
padding: 0px;
}
</style>
</head>
<body>
<a href="offer link"><img src="http://example.com/700x550-image.jpg" /></a>
<script src="tracking script" type="text/javascript"></script>
</body>
How can I get rid of the white bottom, i.e. the scroll bar?