cols="pixels | % | *"
Defines the number and dimension of the columns within a frameset.
The number of columns within the frameset is determined by the number of dimensions
specified in the comma-delimited list. Column width can be defined using
absolute pixels, a percent of the space available or the asterisk wildcard *.
Examples:
cols="50,50,*"
Defines three columns. The first two columns would both be 50 pixels wide and
the third column would occupy the remaining available display width.
cols="25%,75%"
Defines two columns. The first column would occupy 25% of the available display width
and the second column 75% of the available display width.
cols="33%,*,33%"
Defines three columns. The first and third columns would occupy 33% of the available
display width and the center column would occupy the remainder of the available width.
rows="pixels | % | *"
Defines the number and dimension of the rows within a frameset.
The number of rows within the frameset is determined by the number of dimensions
specified in the comma-delimited list. Row height can be defined using
absolute pixels, a percent of the space available or the asterisk wildcard *.
Examples:
rows="200,100,*"
Defines three rows. The first row would be 200 pixels high and the second
row 100 pixels high.
The third row would occupy the remaining available display height.
rows="50%,50%"
Defines two rows. Both rows would occupy exactly 50% of the available display height.
rows="25%,*,25%"
Defines three rows. The first and third rows would occupy 25% of the available
display height and the center row would occupy the remainder of the available display height.