CSS-Textdekoration


Inhaltsverzeichnis

    Inhaltsverzeichnis anzeigen


Textdekoration

In diesem Kapitel erfahren Sie mehr über die folgenden Eigenschaften:

  • text-decoration-line
  • text-decoration-color
  • text-decoration-style
  • text-decoration-thickness
  • text-decoration

Fügen Sie dem Text eine Dekorationslinie hinzu

Zum Hinzufügen wird die Eigenschaft text-decoration-line verwendet eine Dekorationslinie zum Text.

Tipp: Sie können mehr als einen Wert kombinieren, z. B. „overline“ und „overline“. Unterstreichen, um Linien sowohl über als auch unter einem Text anzuzeigen.

Beispiel

h1 {
  text-decoration-line: overline;
}

h2 {
  text-decoration-line: line-through;
}

h3 {
  text-decoration-line: underline;
}
p {
  text-decoration-line: 
  overline underline;
}

Probieren Sie es selbst aus →

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
  text-decoration: overline;
}

h2 {
  text-decoration: line-through;
}

h3 {
  text-decoration: underline;
}

p.ex {
  text-decoration: overline underline;
}
</style>
</head>
<body>

<h1>Overline text decoration</h1>
<h2>Line-through text decoration</h2>
<h3>Underline text decoration</h3>
<p class="ex">Overline and underline text decoration.</p>

<p><strong>Note:</strong> It is not recommended to underline text that is not a link, as this often confuses 
the reader.</p>

</body>
</html>


Hinweis: Es wird nicht empfohlen, Text zu unterstreichen, der kein Link ist, da dies den Leser oft verwirrt.


Geben Sie eine Farbe für die Dekorationslinie an

Die Eigenschaft text-decoration-color wird dazu verwendet Legen Sie die Farbe der Dekorationslinie fest.

Beispiel

h1 {
  text-decoration-line: overline;
  text-decoration-color: 
  red;
}

h2 {
  text-decoration-line: line-through;
  text-decoration-color: 
  blue;
}

h3 {
  text-decoration-line: underline;
  text-decoration-color: 
  green;
}
p {
  text-decoration-line: 
  overline underline;
  text-decoration-color: purple;
}

Probieren Sie es selbst aus →

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
  text-decoration-line: overline;
  text-decoration-color: red;
}

h2 {
  text-decoration-line: line-through;
  text-decoration-color: blue;
}

h3 {
  text-decoration-line: underline;
  text-decoration-color: green;  
}

p {
  text-decoration-line: overline underline;
  text-decoration-color: purple;  
}
</style>
</head>
<body>

<h1>Overline text decoration</h1>
<h2>Line-through text decoration</h2>
<h3>Underline text decoration</h3>
<p>Overline and underline text decoration.</p>

</body>
</html>




Geben Sie einen Stil für die Dekorationslinie an

Die Eigenschaft text-decoration-style wird dazu verwendet Legen Sie den Stil der Dekorationslinie fest.

Beispiel

 h1 {
  text-decoration-line: underline;
  text-decoration-style: 
  solid;
}
  
h2 {
  text-decoration-line: underline;
  
  text-decoration-style: double;
}
  
h3 {
  text-decoration-line: underline;
  
  text-decoration-style: dotted; 
}
p.ex1 {
  text-decoration-line: underline;
  
  text-decoration-style: dashed; 
}
p.ex2 {
  text-decoration-line: underline;
  
  text-decoration-style: wavy; 
}
p.ex3 {
  text-decoration-line: 
  underline;
  text-decoration-color: red; 
  
  text-decoration-style: wavy; 
}

Probieren Sie es selbst aus →

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
  text-decoration-line: underline;
  text-decoration-style: solid; /* this is default */
}

h2 {
  text-decoration-line: underline;
  text-decoration-style: double;
}

h3 {
  text-decoration-line: underline;
  text-decoration-style: dotted;  
}

p.ex1 {
  text-decoration-line: underline;
  text-decoration-style: dashed;  
}

p.ex2 {
  text-decoration-line: underline;
  text-decoration-style: wavy;  
}

p.ex3 {
  text-decoration-line: underline;
  text-decoration-color: red;  
  text-decoration-style: wavy;  
}
</style>
</head>
<body>

<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<p class="ex1">A paragraph.</p>
<p class="ex2">Another paragraph.</p>
<p class="ex3">Another paragraph.</p>

</body>
</html>



Geben Sie die Dicke für die Dekorationslinie an

Die Eigenschaft text-decoration-thickness wird dazu verwendet Legen Sie die Dicke der Dekorationslinie fest.

Beispiel

 h1 {
  text-decoration-line: underline;
  
  text-decoration-thickness: auto;
}
h2 {
  text-decoration-line: 
  underline;
  text-decoration-thickness: 5px;
}
h3 {
  
  text-decoration-line: underline;
  text-decoration-thickness: 25%;
  }
p {
  
  text-decoration-line: underline;
  text-decoration-color: red; 
  
  text-decoration-style: double;
  text-decoration-thickness: 5px; 
}

Probieren Sie es selbst aus →

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
  text-decoration-line: underline;
  text-decoration-thickness: auto;  /* this is default */
}

h2 {
  text-decoration-line: underline;
  text-decoration-thickness: 5px;
}

h3 {
  text-decoration-line: underline;
  text-decoration-thickness: 25%;
}

p {
  text-decoration-line: underline;
  text-decoration-color: red;  
  text-decoration-style: double;
  text-decoration-thickness: 5px;  
}
</style>
</head>
<body>

<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<p>A paragraph.</p>

</body>
</html>



Die Kurzschrifteigenschaft

Die Eigenschaft text-decoration ist eine Abkürzung Eigentum für:

  • text-decoration-line (erforderlich)

  • text-decoration-color (optional)

  • text-decoration-style (optional)

  • text-decoration-thickness (optional)

Beispiel

 h1 {
  text-decoration: underline;
}
h2 {
  
  text-decoration: underline red;
}
h3 {
  text-decoration: underline 
  red double;
}
p {
  
  text-decoration: underline red double 5px;
}

Probieren Sie es selbst aus →

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
  text-decoration: underline;
}

h2 {
  text-decoration: underline red;
}

h3 {
  text-decoration: underline red double;
}

p {
  text-decoration: underline red double 5px;
}
</style>
</head>
<body>

<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<p>A paragraph.</p>

</body>
</html>



Ein kleiner Tipp

Alle Links in HTML sind standardmäßig unterstrichen. Manchmal ...... du Achten Sie darauf, dass Links ohne Unterstreichung gestaltet sind. Zum Entfernen wird die text-decoration: none; verwendet die Unterstreichung von Links, so was:

Beispiel

a {
  text-decoration: none;
}

Probieren Sie es selbst aus →

<!DOCTYPE html>
<html>
<head>
<style>
a {
  text-decoration: none;
}
</style>
</head>
<body>

<h1>Using text-decoration: none</h1>

<p>A link with no underline: <a href="https://www.w3schools.com">W3Schools.com</a></p>

</body>
</html>



Alle CSS-Textdekorationseigenschaften

text-decoration

Legt alle Textdekorationseigenschaften in einer Deklaration fest

text-decoration-color

Gibt die Farbe der Textdekoration an

text-decoration-line

Gibt die Art der zu verwendenden Textdekoration an (Unterstreichung, Überstreichung, usw.)

text-decoration-style

Gibt den Stil der Textdekoration an (durchgehend, gepunktet usw.)

text-decoration-thickness

Gibt die Dicke der Textdekorationslinie an