Click to See Complete Forum and Search --> : frames inside a table cell


xredawg909x
06-16-2005, 12:46 PM
can it be done?


<table>

<tr>
<td>
<frameset ROWS="30%,*">
<frame src="top.htm">
<frame src="bottom.html">
</frameset>
</td>
</tr>

<td>
<br>
</td>
</tr>

<tr>
<td>
<br>
</td>
</tr>
</table>


will that show up on a html page as a top and bottom frame inside that table cell?

NogDog
06-16-2005, 12:53 PM
I believe that would be invalid HTML. You'd probably be better off using iframes (http://www.w3.org/TR/html4/present/frames.html#h-16.5) instead.

xredawg909x
06-16-2005, 01:33 PM
would i be able to make four frames in 1 page and do it like this
____________________________
top frame1.htm(this part is just setting frameset rows=" " , right?)
--------------------------------
" "|
" "|
" A "|
" "|
" "|
" "|
" "|
--------------------------------
bottomframe1.htm (same thing as topframe , rows=" ")
____________________________


would i be able to set a column that doesn' span all the way to the top and bottom for A ?

NogDog
06-16-2005, 07:32 PM
I believe you'd want something like:

<frameset rows="100,*,70">
<frame src="top.html">
<frameset cols="200,*">
<frame src="left_column.html">
<frame src="main_text.html">
</frameset>
<frame src="bottom.html">
<noframes>
<!-- stuff goes here for users without frame support -->
</noframes>
</frameset>