css underlined text code example
Example 1: text underline hover css
a:hover {
text-decoration: underline;
}
Example 2: line through in css
x {
text-decoration: line-through;
}
Example 3: how to underline font in css
h3 {
text-decoration: underline;
}