Hi all
Can anybody tell me how to override the underlining of hyperlinks
Thanks
Can anybody tell me how to override the underlining of hyperlinks
Thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: this_feature_currently_requires_accessing_site_using_safari
Hi all
Can anybody tell me how to override the underlining of hyperlinks
Thanks
For a single suppression of the underline, in your HTML document, include:<STYLE TYPE="text/css">
<!--
A {text-decoration: none}
-->
</STYLE>
A suggestion for CSS enabled browsers which allows normal underlining for unvisited links, and turns off the underlining for visited links:< A STYLE="text-decoration: none"
HREF="CSSFAQs.html">CSS FAQs</A>
<STYLE TYPE="text/css">
<!--
A:visited { color: navy; text-decoration: none; background: transparent;}
A:link { color: teal; text-decoration: underline; background: transparent;}
A:active { color: blue; text-decoration: underline; background: transparent;}
-->
</STYLE>