+ 2
How to overrule underlining Hyperlinks?
about Css
5 Answers
+ 4
Thanks..
0
<a href="#" style="text-decoration:none"> </a>
0
how to overrule enderiling hyperlink
0
0
CSS has the ability to explicitly control the status of underlining for an element - even for hyperlinks. The correct way to do this in an external or document-level style sheet is:
A { text-decoration: none }
and within an anchor element as:
<a HREF="example.htm" STYLE="text-decoration: none">link text</a>