|
No underline links
added on the Jan 16, 2005
Create links without the underline (no underline links)
Even though underlines help identify the links, there are situations where you would want to have links without them (to be special, different, or to create some effects etc.). Again, CSS (cascading style sheets) allow us to do this. Here's the code for 'no underline links':
<!-- Insert this code to the HEAD tags -->
<STYLE TYPE="text/css">
<!--
a {text-decoration: none;}
-->
</STYLE>
|