link text decoration code example
Example 1: how to not underline links in css
a {
text-decoration: none;
}
Example 2: text underline hover css
a:hover {
text-decoration: underline;
}
Example 3: how to change hyperlink color in css
a {
background-color: red;
color: white;
padding: 1em 1.5em;
text-decoration: none;
text-transform: uppercase;
}
Example 4: how to underline text in css
h3 {
text-decoration: underline;
}