| |
Description
| |
The rows attribute is used when you want your page to have more than one horizontal frame. Within the quotes,
provide a set of numbers to define the height of each frame. The numbers can be percentage values of the browser window(which should not exceed
100% when added together), pixel values, or relative scaling values(*). For example,
the code below would create three frames; the first frame would be 25% of the browser window,
the second frame would be 200 pixels tall, and the third frame's height would be the space that was left.
|
Code
| |
<frameset rows="25%, 200, *"></frameset>
|
|