EN
CSS - underline text
4 points
In this short article we would like to show how to create underline text with CSS only.
The style property that makes underline effect on text is text-decoration: underline;
.
Practical example:
xxxxxxxxxx
1
2
<html>
3
<head>
4
<style>
5
6
span {
7
text-decoration: underline;
8
}
9
10
</style>
11
</head>
12
<body>
13
<p>Some text with <span>underline</span> element.</p>
14
</body>
15
</html>
Note:
You can also use the HTML solution from the following article: HTML - underline text.