訪問していないリンクのスタイルを指定することができます。
IE3 / IE4 / IE5 / IE5.5 / IE6 / N4 / N6 / N7 / O6 / O7 / O9 / Fx1 / Fx2 / IE5 mac
要素[.class名][#id名]:link{ 値; }
<html>
<head>
<title>サンプルコード</title>
<style type="text/css">
a#sample1:link {
text-decoration : underline;
color : #3300ff;
}
span#sample2 {
text-decoration : underline;
color : #3300ff;
}
a#sample1:visited {
text-decoration : underline;
color : #336699;
}
</style>
</head>
<body>
<a id="sample1" href="#.html">linkサンプル</a>
<br><br>
<span id="sample2">表示結果イメージ</span>
</body>
</html>