Proprietà per decorare e trasformare il testo.
text-decoration
a { text-decoration: none; } /* Rimuove sottolineatura */
.underline { text-decoration: underline; }
.strike { text-decoration: line-through; }
.overline { text-decoration: overline; }
/* Stile avanzato */
.fancy {
text-decoration: underline wavy red;
}text-transform
.uppercase { text-transform: uppercase; } /* TUTTO MAIUSCOLO */
.lowercase { text-transform: lowercase; } /* tutto minuscolo */
.capitalize { text-transform: capitalize; } /* Prima Lettera Maiuscola */text-shadow
.shadow {
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
/* offset-x offset-y blur color */
}