Any way to remove the blue underline in HTML | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 7

Any way to remove the blue underline in HTML

26th Apr 2018, 9:23 PM
Leon Yang
Leon Yang - avatar
4 Answers
+ 7
/*use this CSS to remove default underlines on links*/ a{ text-decoration: none; }
26th Apr 2018, 9:27 PM
Morpheus
Morpheus - avatar
+ 4
Apply css "text-decoration: none" property to the <a>anchor tag.
26th Apr 2018, 9:29 PM
Rhythm Khandelwal
+ 3
For all links go into your css file and add the following code: a:link{ text-decoration:none; }
27th Apr 2018, 2:32 PM
Jade Emily
+ 2
use text-decoration: none; in the CSS for a tag
26th Apr 2018, 9:40 PM
Flip
Flip - avatar