Text decoration in CSS
Text decoration [text-decoration]
The property
text-decoration
makes it is possible to add different "decorations" or "effects" to text. For example, you can underline the text, have a line through or above the text, etc. In the following example, <h1>
are underlined headlines, <h2>
are headlines with a line above the text and <h3>
are headlines with a line though the text.
h1 {
text-decoration: underline;
}
h2 {
text-decoration: overline;
}
h3 {
text-decoration: line-through;
}
Comments
Post a Comment