Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: john-formbyPosted on 2005-05-23 at 00:34:29ID: 14058329
Hi,
00%;border -color:red ;border:so lid">
Mozilla does not support the overflow element. A possible workaround for you would be to use an iframe.
Here is your code with the iframe:
<html>
<head>
<title>Panel</title>
<body>
<table id="tblParent" borderColor="#ccc6b0" cellSpacing="0" height="100%" cellPadding="0" width="100%" border="1">
<tr style="height:50px">
<td colSpan="3" valign="top">TopPanel</td>
</tr>
<tr>
<td width="115">Left Panel</td>
<td valign="top">
<div STYLE="height:100%;width:1
<iframe src="panel.html" width="99%" height="99%" frameborder="0" marginheight="0" marginwidth="0" name="mainiframe" scrolling="auto"></iframe>
</div>
</td>
<td width="61">Right Panel</td>
</tr>
<tr style="height:50px">
<td colspan="3">Bottom Panel
</td>
</tr>
</table>
</body>
</html>
Save the following as panel.html
<html>
<head>
</head>
<body>
Panel Panel Panel Panel Panel Panel Panel Panel Panel Panel Panel Panel Panel Panel Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>Panel <br/>
</body>
</html>
Hope this helps,
John