English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML Referenzhandbuch

Vollständiges Verzeichnis der HTML-Tags

HTML: <frameset> rows-Eigenschaft

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.

 HTML <frameset> Tag

Online-Beispiel

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 ‹/›

Browser Compatibility

IEFirefoxOperaChromeSafari

All major browsers support the rows attribute.

Definition and Usage

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.

Syntax

<frameset rows="pixels|%|*">

Attribute Value

ValueDescription
pixelsSpecify 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.
HTML <frameset> Tag