English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Dieser Artikel beschreibt die Verwendung der rows-Eigenschaft des HTML frameset-Elements, zeigt mit Online-Beispielen, wie man die rows-Eigenschaft des HTML frameset-Elements verwendet, die Kompatibilität der Browser, die Syntaxdefinition und detaillierte Informationen zu seinen Eigenschaftswerten.
Ein dreizeiliges Raster:
<frameset rows="25,%*,25%"> <frame src="frame_a.htm"> <frame src="frame_b.htm"> <frame src="frame_c.htm"> </frameset>Test it out ‹/›
IEFirefoxOperaChromeSafari
All major browsers support the rows attribute.
HTML5 The <frameset> tag is not supported.
The rows attribute specifies the size and number of rows in <frameset>.
The height of each frame is specified in the rows attribute separated by commas.
Note:Once the number of rows specified by the rows attribute is defined, the number of rows in <frameset> is defined.
<frameset rows="pixels|%|*">
Value | Description |
---|---|
pixels | Specify the row height in pixels (for example "100px" or just "100")。 |
% | Specify the row height as a percentage of the available space (for example "50%")。 |
* | The remaining available space will be allocated to this row. |