How to create email link without underline | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 7

How to create email link without underline

Code??

30th Apr 2018, 4:10 AM
Rajeshwari Baniya
Rajeshwari Baniya - avatar
3 Answers
+ 5
<a href="mailto:email@domain.com" style="text-decoration: none; ">Email</a>
30th Apr 2018, 4:14 AM
Adam
Adam - avatar
+ 3
Tq
30th Apr 2018, 6:18 AM
Rajeshwari Baniya
Rajeshwari Baniya - avatar
+ 1
Here is example you can use text-decoration:none; to remove default styling to a tab it's better practice to put it in css as follows a { text-decoration :none; } so you don't have to specify it always always in later styling u may use :focus, :hover pseudo classes to get exact output u want https://code.sololearn.com/WpA0LFK7Qh7U/?ref=app
30th Apr 2018, 6:09 AM
Yugabdh
Yugabdh - avatar