Dynamicdeezign, documentation of html and css
The guide to create your Web site on Internet
 

<frameset> : window subdivision
The FRAMESET element specifies the layout of the main user window in terms of rectangular subspaces.
Attributes
rows
This attribute specifies the layout of horizontal frames. It is a comma-separated list of pixels, percentages, and relative lengths. The default value is 100%, meaning one row.
cols
This attribute specifies the layout of vertical frames. It is a comma-separated list of pixels, percentages, and relative lengths. The default value is 100%, meaning one column.

Example

The first example divides the screen vertically in two (i.e., creates a top half and a bottom half).

<FRAMESET rows="50%, 50%">
...the rest of the definition...
</FRAMESET>

The next example creates three columns: the second has a fixed width of 250 pixels (useful, for example, to hold an image with a known size). The first receives 25% of the remaining space and the third 75% of the remaining space.

<FRAMESET cols="1*,250,3*">
...the rest of the definition...
</FRAMESET>

The next example creates a 2x3 grid of subspaces.

<FRAMESET rows="30%,70%" cols="33%,34%,33%">
...the rest of the definition...
</FRAMESET>

For the next example, suppose the browser window is currently 1000 pixels high. The first view is allotted 30% of the total height (300 pixels). The second view is specified to be exactly 400 pixels high. This leaves 300 pixels to be divided between the other two frames. The fourth frame's height is specified as "2*", so it is twice as high as the third frame, whose height is only "*" (equivalent to 1*). Therefore the third frame will be 100 pixels high and the fourth will be 200 pixels high.

<FRAMESET rows="30%,400,*,2*">
...the rest of the definition...
</FRAMESET>







For complete reference see html reference at W3C

P6..17   P6..18   P6..19   P6..20   P6..21   P6..22   P6..23   P6..24   P6..25   P6..26   P7..1   P8..1   P8..2   P8..3  
P8..4   P8..5   P8..6   P8..7   P8..8   P8..9   P8..10   P9..1   PA..1   PA..2   PA..3   PA..4   PA..5   PA..6  
PA..7   PA..8   PA..9   PA..10   PB..1   PB..2   PB..3   PB..4   PB..5   PB..6   PC..1   PC..2   PC..3   PC..4  
PC..5   PC..6   PC..7   PC..8   PC..9   PC..10   PC..11   PC..12   PC..13   PC..14   PC..15   PC..16   PC..17   PC..18