remove line from hyperlink in css code example
Example 1: remove line from a href css
a {
text-decoration: none;
}
Example 2: how to remove the line from a link in css
/*like suppose I take a tag of html*/
a{
decoration:none;
}
a {
text-decoration: none;
}
/*like suppose I take a tag of html*/
a{
decoration:none;
}