0
how can i creat a email link without an underline?
<a href="____abc@def.com" _____"text-decoration:_____">send</a>
4 Answers
+ 6
Oh, just realized there's more. The link should be of a syntax like below:
<a href="mailto:abc@def.com" style="text-decoration:none">send</a>
+ 5
Set text-decoration to "none" - it should work.
+ 5
it use a bit of css
a {
text decoration: none;
}
0
thank you. i just start to learn css.