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

HTML Referenzhandbuch

Vollständiges Verzeichnis der HTML-Tags

HTML: <iframe> seamless Attribut

Dieser Artikel beschreibt die HTML-Attribut 'iframe seamless', das ein boolesches Attribut ist. Das Attribut 'seamless' legt fest, dass das <iframe> wie ein Teil des enthaltenen Dokuments aussieht (ohne Rahmen und Scrollbalken).

 HTML <iframe> Tag

Online-Beispiel

An <iframe> that looks like a part of the containing document:

<iframe src="demo-iframe.html" seamless></iframe>
Test see ‹/›

Browser Compatibility

IEFirefoxOperaChromeSafari

Note:Only Chrome and Safari 6 Supports the seamless attribute of the <iframe> tag.

Definition and Usage

The seamless attribute is a boolean attribute.

The seamless attribute specifies that the <iframe> appears to be part of the containing document (without borders and scrollbars).

HTML 4.01 versus HTML5differences

The seamless attribute is an HTML5 new attributes.

Differences between HTML and XHTML

In XHTML, attribute abbreviations are prohibited, the seamless attribute must be defined as <iframe seamless="seamless">.

Syntax

<iframe seamless>

 HTML <iframe> Tag