Home | All Questions | alt.html FAQ >

How do I make all my links non-underlined until the mouse is over them?

<style type="text/css">
a {
  text-decoration:none;
}
a:hover {
  text-decoration:underline;
}
</style>

Recommended Resources

Discussion

Related Questions