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

HTML Referenzhandbuch

Vollständiges Verzeichnis der HTML-Tags

HTML: <body> Tag

Der HTML <body>-Tag definiert das Hauptinhalt der HTML-Dokumente oder -Dokumentteile, die direkt auf Ihrer Webseite sichtbar sind. Dieser Tag wird auch oft als <body>-Element bezeichnet.

Online-Beispiel

Ein einfaches HTML-Dokument, das so wenig wie möglich erforderliche Tags enthält:

!DOCTYPE html
<html>
<head>
<meta charset="utf-8">
<title>Dokumenttitel</title>
</head>
 
<body>
Inhaltsbereich des Dokuments......
</body>
 
</html>
Testen Sie es heraus ‹/›

Browserkompatibilität

IEFirefoxOperaChromeSafari

Alle gängigen Browser unterstützen den <body>-Tag.

Definition und Verwendungshinweise des Tags

Der <body>-Tag definiert den Hauptteil des Dokuments.

The HTML <body> element is located within the<html> tag.
The most common elements in the HTML <body> tag are: <h1>,<p>,<div>and<table>tags.

HTML 4.01 With HTML5Differences

In HTML 5 In, all body elements' 'presentation attributes' have been removed.

In HTML 4.01 In, all body elements' 'presentation attributes' are deprecated.

Attribute

AttributeValueDescription
alinkcolorHTML5 Not Supported. HTML 4.01 Deprecated.    Specifies the color of active links in the document.
backgroundURLHTML5 Not Supported. HTML 4.01 Deprecated. Specifies the background image of the document.
bgcolorcolorHTML5 Not Supported. HTML 4.01 Deprecated. Specifies the background color of the document.
linkcolorHTML5 Not Supported. HTML 4.01 Deprecated. Specifies the color of unvisited links in the document.
textcolorHTML5 Not Supported. HTML 4.01 Deprecated. Specifies the color of all text in the document.
vlinkcolorHTML5 Not Supported. HTML 4.01 Deprecated. Specifies the color of visited links in the document.

Global Attributes

<body> Tag Supported Global Attributes of HTML.

Event Attributes

<body> Tag Supported HTML Event Attributes.

Related Articles

HTML Tutorial: HTML Elements

HTML DOM Reference Manual:Body Object