Hi,
I have a problem where an iframe is displaying a horizontal scroll when it should not be.
I have set up 2 test files to illustrate the problem
PHP Code:<!-- file 1 - iframe.html-->
<html>
<head>
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style></head>
<body><iframe src="test.html" name="test" width="754" marginwidth="0" height="1000" marginheight="0" align="middle" scrolling="auto" frameborder="0"></iframe>
</body>
</html>
You can see above that the 2nd file has no content that requires a horizontal scroll so can anyone work out why it is still appearing as a scroll in the iframe?PHP Code:<!-- file 2 - test.html -->
<html>
<head>
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style></head>
<body>
<p>a</p>
<p> </p>
<p>a</p>
<p> </p>
<p>a</p>
<p> </p>
<p>a</p>
<p> </p>
<p>a</p>
<p> </p>
<p>a</p>
<p> </p>
<p>a</p>
<p>a</p>
<p>a</p>
<p>a</p>
<p>a</p>
<p>a</p>
<p>a</p>
<p>a</p>
<p> </p>
<p>a</p>
<p>a</p>
<p>a</p>
<p>a</p>
<p>a</p>
<p>a</p>
<p>a</p>
<p>a </p>
</body>
</html>
Thanks in advance,
Martin





Bookmarks