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
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
-JF
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.
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
Yes, you can, indirectly:
Arie Molendijk.Code:<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>
Bookmarks