how can i creat a email link without an underline? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

how can i creat a email link without an underline?

<a href="[email protected]" _____"text-decoration:_____">send</a>

18th Nov 2017, 7:07 AM
Ranger1914
Ranger1914 - avatar
4 Answers
+ 6
Oh, just realized there's more. The link should be of a syntax like below: <a href="mailto:[email protected]" style="text-decoration:none">send</a>
18th Nov 2017, 7:20 AM
Kuba SiekierzyƄski
Kuba SiekierzyƄski - avatar
+ 5
Set text-decoration to "none" - it should work.
18th Nov 2017, 7:17 AM
Kuba SiekierzyƄski
Kuba SiekierzyƄski - avatar
+ 5
it use a bit of css a { text decoration: none; }
18th Nov 2017, 8:01 AM
Amethyst Animion
Amethyst Animion - avatar
0
thank you. i just start to learn css.
18th Nov 2017, 2:51 PM
Ranger1914
Ranger1914 - avatar