i want to remove underline of the link text
Asked
Active
Viewed 43 times
3 Answers
0
Use CSS:
a {
text-decoration: none;
}
You can also add:
a:hover {
text-decoration: underline;
}
MaKR
- 1,862
- 2
- 17
- 29
0
You can do this using the text-decoration: none; as follows:
a {
text-decoration: none;
}
<a href="www.google.com">Link</a>
Majed Badawi
- 25,448
- 4
- 17
- 37