Results 1 to 3 of 3

Thread: <frameset> inside of <table>?

  1. #1
    Join Date
    Aug 2005
    Posts
    200
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default <frameset> inside of <table>?

    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

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    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

  3. #3
    Join Date
    Sep 2007
    Location
    The Netherlands
    Posts
    1,881
    Thanks
    49
    Thanked 266 Times in 258 Posts
    Blog Entries
    56

    Default

    Yes, you can, indirectly:
    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>
    Arie Molendijk.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •