|
Question
Anonymous writes:
"How can I remove link underlines" ?
Answer
11/29/99
There are several ways you
can remove link underlines from your documents. The first thing
that comes to my mind, is to set your browser preferences so that
links are displayed without the underline. Of course, as a web builder,
you probably want to do more than that so here is what you need
to add to your HTML to remove link underlines.
Place the following code inside the HEAD of your HTML document
so that it affects all the links in your web page.
<style>
<!--
A {text-decoration: none}
-->
</style>
You can also use the following code to affect
only one link in your document. Note that the code below goes inside
the BODY of your HTML document.
<A href="your_url"
Style="text-decoration:
none">My
link</a>
To accomplish the effect of removing link
underlines we used CSS (Cascade Style Sheets). To learn more about
CSS check out this online resource.
|