| text-align | none, left, right, center, justify, normal |
| text-decoration | none, underline, overline, blink, line-throught |
| text-transform | none, uppercase (majuscule), lowercase (minuscule) |
Exemple avec text:
Codage CSS de l'exemple:
#texte {
width:500px;
height: 300px;
background-color: yellow;
font-family: Arial, Courrier New;
/* le texte est aligné au centre */
text-align: center;
/* le texte reçoit une décoration dessus et dessous */
text-decoration: underline overline;
}
#textemajuscule {
/* le mot est transformé en majuscule avec la propriète uppercase */
text-transform: uppercase;
}
| Code HTML pour afficher le style CSS
<html> |