Removing Text Effects in CSS
A value of none cancels all effects. Typically used to remove underlining from links.
See example:
<a href="">link</a>
a {
text-decoration: none;
}
:
Implement the example below:
A value of none cancels all effects. Typically used to remove underlining from links.
See example:
<a href="">link</a>
a {
text-decoration: none;
}
:
Implement the example below: