View Full Version : <frameset> inside of <table>?
Freeman
01-22-2008, 06:15 PM
Is it possible to build framesets inside of a table? have been working on it for a bit and it just doesn't show anything. I don't know if HTML doesn't allow you to do this or not. Thanks for any help, JF
jscheuer1
01-22-2008, 07:35 PM
No, you cannot do that. For a table, the page needs a body, but the frameset tag belongs before the body tag. You can put iframes in a table, they behave much like frames.
molendijk
01-22-2008, 10:00 PM
Yes, you can, indirectly:
<table border="1">
<tr>
<td style="width:500px;height:400px">
<iframe src='frameset.html' frameborder="0" style="width:100%;height:100%"></iframe>
</td>
</tr>
</table>
Arie Molendijk.
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.