Definition and Usage The rows attribute specifies the size of, and number of columns in the frameset. Syntax <frameset rows="...
Definition and Usage
The rows attribute specifies the size of, and number of columns in the frameset.
Syntax
<frameset rows="rows_size"> |
Syntax Example
<frameset rows="90,50%,*"> |
Attribute Values
Value | Description |
pixels | Specifies row size in pixels. |
percent | Specifies the row size in percent. |
* | Specifies the rest of the available space should be assigned this row. |
Note: The number of attribute values used defines the number of columns.
Browser Support
The attribute is supported in all major browsers.
Example
<html>
<frameset rows="90,50%,*">
<frame src="frame_a.htm" />
<frame src="frame_b.htm" />
<frame src="frame_c.htm" />
</frameset>
</html> |