+ 7
How to create email link without underline
Code??
3 Respostas
+ 5
<a href="mailto:email@domain.com" style="text-decoration: none; ">Email</a>
+ 3
Tq
+ 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