HTML <frameset> rows Attribute Last Updated : 03 Oct, 2024 Comments Improve Suggest changes Like Article Like Report The HTML <frameset> element's rows attribute defines the number and height of rows in the frameset. Values can be set in pixels, percentages, or using an asterisk (*) for flexible distribution of available space.Syntax<frameset rows="pixels|%|*">Attribute Values:pixels: The height of the row is set in terms of pixels. Example: "50px" or "50".%: The height of the row is set in terms of percentage. Example "70%".*: The height of the row is set to all available space.Note: The <frameset> rows Attribute is not supported by HTML 5. Example: In this example we creates a frameset with three rows using the rows attribute, dividing the viewport into 20%, 60%, and 20% sections, each loading a different image (attr1.png, gradient3.png, and col_last.png). html <!DOCTYPE html> <html> <head> <title>HTML frameset rows Attribute</title> </head> <!-- frameset attribute starts here --> <frameset rows="20%, 60%, 20%"> <frame name="top" src="attr1.png" /> <frame name="main" src="gradient3.png" /> <frame name="bottom" src="col_last.png" /> </frameset> <!-- frameset attribute ends here --> </html> Output:Supported Browsers The browser supported by HTML <frameset> rows Attribute are listed below: Google ChromeEdge FirefoxOperaSafari Comment More infoAdvertise with us Next Article HTML <frameset> rows Attribute J jit_t Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML | <frameset> cols Attribute The HTML <frameset> cols Attribute is used to specify the size and the number of columns in a frameset. The width of each frame is separated by a comma. Note: It is not supported in HTML5. Syntax: <frameset cols="pixels | % | *"> Attribute Values: pixels: The width of column is set in te 1 min read HTML | <frame> noresize Attribute The HTML <frame> noresize attribute is used to specify that the frame element can not be resize by the user. This type of attribute is used to lock the size of the frame element. Syntax: <frame noresize="noresize"> Attribute Values: noresize: It defines the frame element that can not be 1 min read HTML | <frame> scrolling Attribute The HTML <frame> scrolling attribute is used to specify that whether the scrollbar will be displayed or not in the <frame> element. Basically, the scrollbar is used when the content is larger than the Iframe Element.Syntax: <frame scrolling="auto|yes|no"> Attribute Values: auto: It 1 min read HTML <table> frame Attribute The HTML <table> element's frame attribute specifies which sides of the tableâs border should be displayed. It can take values like a void, above, below, hsides, vsides, lhs, rhs, or box, controlling how the table's edges are framed.Syntax<table frame="value">Attribute ValuesValueDescrip 2 min read HTML < rowspan> Attribute The HTML <th> rowspan Attribute is used to specify how many numbers of header row cell will span. Syntax: <th rowspan="number">Attribute Value: number: It contains the numeric value which specifies the number of rows the header cell should span.Example: html <!DOCTYPE html> <htm 1 min read Like