Typography
text-decoration
Learn how to use the CSS text-decoration property.
CSS text-decoration
The text-decoration property sets the text decoration for an HTML element.
Syntax
.element {
text-decoration: underline;
}
HTML Context Example
<div class="card">
This is a styled element.
</div>
<style>
.card {
text-decoration: underline;
}
</style>
Notes
Experiment in the CSS playground to see how this affects layout and styling.