IFRAME Problem

Ive started working with an IFRAME for a website for a friend. On Firefox it looks great but when i look at it in IE i get this horizontal scrollbar which i don't get in Firefox and don't want. I need to know how to get rid of it. Any help would be greatly appreciated. This is what the code looks like:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head></head>

<style type="text/css">

<!--

iframe {

overflow-x: hidden;

overflow-y: scroll;

}

-->

</style>

<body>

<iframe src="../../unavailable.html" width="620px" height="403" frameborder="0" name="content" scrolling="yes" allowtransparency="yes" />

</body>

#418704

Try taking away the scrolling="yes", and make sure the iframe content is not wider than 620px.

But if you can, get rid of frames and iframe: you can usually do without, and XHTML doesn't allow them.

#418713