BrotherArnold
Technical User
Hi,
Can anyone explain why I get a right scrollbar when I reduce the height of the window but the page content is still completely in view and if I change relative to absolute I don't get any scrollbars doing the same thing?
The code below is an example of this behaviour. If you resize the window moving the bottom up towards the bottom of the table you'll see the scrollbar appear 50px before the bottom of the table.
How do I stop the scrollbars from appearing? I don't really want to use scroll=no in the body tag as that stops all scrolling. I tried Overflow-x: hidden on the body tag but that doesn't seem to work either.
Thanks in advance
Brother Arnold
"keep passing the open windows..."
Can anyone explain why I get a right scrollbar when I reduce the height of the window but the page content is still completely in view and if I change relative to absolute I don't get any scrollbars doing the same thing?
The code below is an example of this behaviour. If you resize the window moving the bottom up towards the bottom of the table you'll see the scrollbar appear 50px before the bottom of the table.
How do I stop the scrollbars from appearing? I don't really want to use scroll=no in the body tag as that stops all scrolling. I tried Overflow-x: hidden on the body tag but that doesn't seem to work either.
Code:
<html>
<head>
<body>
<center>
<table border=1 height=150 width=260 bgcolor="#FFD648">
<tr>
<td>DESIGN</td>
<td>BUILD</td>
</tr>
</table>
<div style="position: relative;left: 55px;top: -150px">
<table height=100 width=100 bgcolor="#FDE283">
<tr>
<td>Process1</td>
</tr>
</table>
</div>
</center>
</body>
</html>
Thanks in advance
Brother Arnold
"keep passing the open windows..."