<FRAMESET ...><FRAMESET ...>COLS =integerROWS =integer
| Usage Recommendation |
|---|
COLSROWS
| this code | produces this |
<FRAMESET ROWS="80%,20%" COLS="60%,20%,20%"> <FRAME SRC="rowcol1a.html"> <FRAME SRC="rowcol1b.html"> <FRAME SRC="rowcol1c.html"> <FRAME SRC="rowcol1d.html"> <FRAME SRC="rowcol1e.html"> <FRAME SRC="rowcol1f.html"> <NOFRAMES>NOFRAMES stuff </NOFRAMES> </FRAMESET> |
this page |
The ROWSCOLS
If you leave out either ROWSCOLS
| this code | produces this |
<FRAMESET ROWS="80%,20%"> |
this page |
If you use an asterisk ("*") in place of a number, that says "use whatever is left over". If more than one asterisk is used then the remaining space is divided evenly. In the next example, the ROWSCOLS
| this code | produces this |
<FRAMESET ROWS="80%,*" COLS="60%,*,*"> |
this page |
If you use only asterisks then everything is spaced evenly. The next example produces six frames that are all the same width and all the same height (i.e., all the same size):
| this code | produces this |
<FRAMESET ROWS="*,*" COLS="*,*,*"> |
this page |
<FRAMESET FRAMEBORDER="...">