Link Without Underline

CSS Links Without Lines 
If using the links with HTML standards, most forms have a line link below. Now what if the link without bottom line. Here is the code to make link without underline :


<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Link without underline</title>
<style type="text/css">
a:link.noline {text-decoration:none}
a:visited.noline {text-decoration:none}
a:active.noline {text-decoration:none}
a:hover.noline {text-decoration:none}
</style>
</head>
<body>
<p><a href="#">Standard Link</a> </p>
<p><a class="noline" href="#" >Link Without Underline</a></p>
</body>
</html>

Links Without Underline: simply by changing text-decoration worth none of the four attributes can be removed hyperling the bottom line.

0 comments:

Post a Comment