devstory

Le Tutoriel de CSS text-decoration

  1. CSS text-decoration
  2. CSS text-decoration-line
  3. CSS text-decoration-style
  4. CSS text-decoration-color

1. CSS text-decoration

CSS text-decoration sert à décorer le contenu textuel d'un élément. La syntaxe formelle (formal syntax) de CSS text-decoration exige que vous lui donniez 3 valeurs.
Formal Syntax
/* Formal Syntax: */
text-decoration:  <'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'>

/* Example: */
text-decoration: underline dotted red;
text-decoration: underline solid blue;
text-decoration: line-through solid green;
Remarque : L'ordre de (text-decoration-line, text-decoration-style, text-decoration-color) peut changer arbitrairement.
Formal Syntax
/* Formal Syntax: */
text-decoration:  <'text-decoration-line'> || <'text-decoration-style'> || <'text-decoration-color'>
text-decoration:  <'text-decoration-line'> || <'text-decoration-color'> || <'text-decoration-style'>
text-decoration:  <'text-decoration-style'> || <'text-decoration-color'> || <'text-decoration-line'>

...
<h2 style="text-decoration: underline dotted red;">
      text-decoration: underline dotted red;
</h2>
<h2 style="text-decoration: underline solid blue;">
      text-decoration: underline solid blue;
</h2>
<h2 style="text-decoration: line-through solid green;">
      text-decoration: line-through solid green;
</h2>
CSS property
Values
text-decoration-line
  • none (Default)
  • underline
  • overline
  • line-through
text-decoration-style
  • solid (Default)
  • double
  • dotted
  • dashed
  • wavy
text-decoration-color
  • HTML Color
Vous pouvez également fournir 1 ou 2 valeurs pour CSS text-decoration :
<!-- text-decoration-line -->
<h2 style="text-decoration: overline;">
    text-decoration: overline;
</h2>
<!-- text-decoration-line || text-decoration-color -->
<h2 style="text-decoration: underline blue;">
    text-decoration: underline blue;
</h2>
<!-- text-decoration-line || text-decoration-style -->
<h2 style="text-decoration: line-through dashed;">
    text-decoration: line-through dashed;
</h2>
<!-- text-decoration-line || text-decoration-style || text-decoration-color -->
<h2 style="text-decoration: overline wavy green;">
    text-decoration: overline wavy green;
</h2>
Au lieu d'utiliser CSS text-decoration vous pouvez utiliser la combinaison de 3 propriétés (property) suivantes :
  • CSS text-decoration-line
  • CSS text-decoration-style
  • CSS text-decoration-color
text-decoration-example2.html
<!DOCTYPE html>
<html>
   <head>
      <title>CSS text-decoration</title>
      <meta charset="UTF-8"/>
      <style>
        div {
          text-decoration-line: underline;
          text-decoration-style: wavy;
          text-decoration-color: red;
        }
      </style>
   </head>
   <body>
      <p style="font-style:italic;">
        {<br/>
          text-decoration-line: underline; <br/>
          text-decoration-style: wavy; <br/>
          text-decoration-color: red; <br/>
        }
      </p>
       <div>
           Some thing Error!
       </div>
   </body>
</html>

2. CSS text-decoration-line

CSS text-decoration-line permet de définir la position des lignes décoratives pour le contenu textuel d'un élément. Il peut recevoir l'une des valeurs suivantes :
  • none (Default)
  • underline
  • overline
  • line-through
<p style="text-decoration-line: none;">
   text-decoration-line: none;
</p>
<p style="text-decoration-line: line-through">
   text-decoration-line: line-through
</p>
<p style="text-decoration-line: underline">
   text-decoration-line: underline
</p>
<p style="text-decoration-line: overline">
   text-decoration-line: overline
</p>
CSS text-decoration-line accepte une ou plusieurs valeurs :
<p style="text-decoration-line: line-through underline">
   text-decoration-line: line-through underline
</p>
<p style="text-decoration-line: underline overline">
   text-decoration-line: underline overline
</p> 
<p style="text-decoration-line: overline line-through underline">
   text-decoration-line: overline line-through underline
</p>

3. CSS text-decoration-style

CSS text-decoration-style permet de définir le style des lignes créées par CSS text-decoration-line.
Les valeurs possibles de CSS text-decoration-style :
  • solid
  • double
  • dotted
  • dashed
  • wavy
<p style="text-decoration-line:underline; text-decoration-style: solid;">
   text-decoration-style: solid;
</p>
<p style="text-decoration-line:underline; text-decoration-style: double;">
   text-decoration-style: double;
</p>
<p style="text-decoration-line:underline; text-decoration-style: dotted;">
   text-decoration-style: dotted;
</p>
<p style="text-decoration-line:underline; text-decoration-style: dashed;">
   text-decoration-style: dashed;
</p> 
<p style="text-decoration-line:underline; text-decoration-style: wavy;">
   text-decoration-style: wavy;
</p>
Remarque : Bien que vous puissiez attribuer une ou plusieurs valeurs à CSS text-decoration-line, vous ne pouvez attribuer qu'une seule valeur au CSS text-decoration-style. Cela signifie que toutes les lignes qui sont décorées pour le contenu d'un élément particulier auront le même style.
text-decoration-style-example2.html
<!DOCTYPE html>
<html>
   <head>
      <title>CSS text-decoration-style</title>
      <meta charset="UTF-8"/>
      <style>
         p {
           font-size: 120%;
           text-decoration-line:underline overline;
           text-decoration-style: wavy;
         }
      </style>
   </head>
   <body>
     <h2>CSS text-decoration-style</h2>
      <p>
         text-decoration-line:underline overline;
         text-decoration-style: wavy;
      </p>
   </body>
</html>

4. CSS text-decoration-color

CSS text-decoration-color permet de définir la couleur des lignes créées par CSS text-decoration-line.
La valeur de CSS text-decoration-color peut-être :
  • Le nom des couleurs, par exemple : red, blue, yellow, ...
  • Une valeur GRB, par exemple GRB(255,255,0),..
  • Une valeur HEX, par exemple #FF00FF.
  • currentColor: La couleur de la ligne sera la même que la couleur du texte (Text color) de l'élément.
  • transparent: Définit la couleur transparente de la ligne.
/* <color> values */
text-decoration-color: currentColor;
text-decoration-color: red;
text-decoration-color: #00ff00;
text-decoration-color: rgba(255, 128, 128, 0.5);
text-decoration-color: transparent;

/* Global values */
text-decoration-color: inherit;
text-decoration-color: initial;
text-decoration-color: unset;
Exemple :
<p style="text-decoration-line:underline; text-decoration-color: red;">
   text-decoration-color: red;
</p>
<p style="text-decoration-line:underline; text-decoration-color: blue;">
   text-decoration-color: blue;
</p>
<p style="text-decoration-line:underline; text-decoration-color: currentColor;">
   text-decoration-color: currentColor;
</p>
Remarque : Bien que vous puissiez assigner une ou plusieurs valeurs à CSS text-decoration-line, vous ne pouvez assigner qu'une seule valeur à CSS text-decoration-color. Cela signifie que toutes les lignes qui sont décorées pour un élément particulier auront la même couleur.
<!DOCTYPE html>
<html>
   <head>
      <title>CSS text-decoration-color</title>
      <meta charset="UTF-8"/>
      <style>
         p {
           font-size: 120%;
           text-decoration-line:underline overline;
           text-decoration-color: blue;
         }
      </style>
   </head>
   <body>
     <h2>CSS text-decoration-color</h2>
      <p>
         text-decoration-line:underline overline;
         text-decoration-color: blue;
      </p>
   </body>
</html>