BESTE WEBSITE FÜR WEBENTWICKLER
HTML5. W3Schools auf Deutsch. Der komplette Tag-Guide

Ua En Es Fr

HTML-<body>-Tag


Beispiel

Ein einfaches HTML-Dokument:

<html>
<head>
  <title>Title of the document</title>
</head>

<body>
  <h1>This is a heading</h1>
  <p>This is a paragraph.</p>
</body>

</html>
Try it Yourself »

Weitere "Try it Yourself" („Probieren Sie es selbst“)-Beispiele weiter unten.


Definition und Verwendung

Das Tag <body> definiert den Hauptteil des Dokuments.

Das Element <body> enthält alle Inhalte eines HTML-Dokuments, wie Überschriften, Absätze, Bilder, Hyperlinks, Tabellen, Listen usw.

Hinweis: In einem HTML-Dokument kann es nur ein <body>-Element geben.


Browser-Unterstützung

Element
<body> Ja Ja Ja Ja Ja

Globale Attribute

Das Tag <body> unterstützt auch die Globale Attribute in HTML.


Ereignisattribute

Das Tag <body> unterstützt auch die Ereignisattribute in HTML.


Weitere Beispiele

Beispiel

Fügen Sie einem Dokument ein Hintergrundbild hinzu (mit CSS):

<html>
<head>
<style>
body {
  background-image: url(w3s.png);
}
</style>
</head>
<body>

<h1>Hello world!</h1>
<p><a href="https://www.w3schools.com">Visit W3Schools.com!</a></p>

</body>
Try it Yourself »

Beispiel

Legen Sie die Hintergrundfarbe eines Dokuments fest (mit CSS):

<html>
<head>
<style>
body {
  background-color: #E6E6FA;
}
</style>
</head>
<body>

<h1>Hello world!</h1>
<p><a href="https://www.w3schools.com">Visit W3Schools.com!</a></p>

</body>
Try it Yourself »

Beispiel

Legen Sie die Textfarbe in einem Dokument fest (mit CSS):

<html>
<head>
<style>
body {
  color: green;
}
</style>
</head>
<body>

<h1>Hello world!</h1>
<p>This is some text.</p>
<p><a href="https://www.w3schools.com">Visit W3Schools.com!</a></p>

</body>
</html>
Try it Yourself »

Beispiel

Legen Sie die Farbe nicht besuchter Links in einem Dokument fest (mit CSS):

<html>
<head>
<style>
a:link {
  color:#0000FF;
}
</style>
</head>
<body>

<p><a href="https://www.w3schools.com">W3Schools.com</a></p>
<p><a href="https://www.w3schools.com/html/">HTML Tutorial</a></p>

</body>
</html>
Try it Yourself »

Beispiel

Legen Sie die Farbe aktiver Links in einem Dokument fest (mit CSS):

<html>
<head>
<style>
a:active {
  color:#00FF00;
}
</style>
</head>
<body>

<p><a href="https://www.w3schools.com">W3Schools.com</a></p>
<p><a href="https://www.w3schools.com/html/">HTML Tutorial</a></p>

</body>
</html>
Try it Yourself »

Beispiel

Legen Sie die Farbe besuchter Links in einem Dokument fest (mit CSS):

<html>
<head>
<style>
a:visited {
  color:#FF0000;
}
</style>
</head>
<body>

<p><a href="https://www.w3schools.com">W3Schools.com</a></p>
<p><a href="https://www.w3schools.com/html/">HTML Tutorial</a></p>

</body>
</html>
Try it Yourself »

Verwandte Seiten

HTML-Tutorial: HTML-Elemente

HTML-DOM-Referenz: Body-Objekt

HTML-DOM-Referenz: document.body-Eigenschaft


Standard-CSS-Einstellungen

Die meisten Browser zeigen das Element <body> mit den folgenden Standardwerten an:

Beispiel

body {
  display: block;
  margin: 8px;
}

body:focus {
  outline: none;
}
Try it Yourself »

Hinweis: Gemäß der HTML5-Spezifikation ist das <body>-Tag optional, HTML-Seiten funktionieren ohne es. Es wird jedoch weiterhin empfohlen, das Tag <body> zu verwenden, um die korrekte Anzeige von Webseiten in einigen Webanwendungen zu gewährleisten und Fehler bei deren Arbeit zu vermeiden.