Log in

View Full Version : Scrolling still showing...



ZeusEX
09-18-2006, 01:38 AM
Please,

take a look.

This is my iframe...


<iframe name="frame" src="home2.html"
width=615 height=375
frameborder="0" marginheight="0" marginwidth="0">
</iframe>

and this is my page...


<body>
<table align="center">
<tr>
<td align="center" width="550"> Title </td>
</tr>
<tr>
<td valign="top" align="left" width="550"> Text
</td>
</tr>
<tr>
<td width="550"> Navegation
</td>
</tr>
</table>
<body>


Why everytime the vertical bar is needed the horizontal bar is appearing too?

It's killing me.

Can I block only the horizontal bar?:confused:

HELP! :(

ZeusEX
09-18-2006, 01:43 AM
Yeah,

I solve it with

html {
overflow-x:hidden;
}

thanks everybody

blm126
09-18-2006, 02:14 AM
that is close as you are going to get. However, just so you know that is a non-standard property. It works in both Firefox and Internet Explorer and has no negative effect in other browsers so you can use it anyway.

jscheuer1
09-18-2006, 05:38 AM
It is IE and recent FF specific but, FF will display it correctly without overflow-x:hidden; - so will Opera.