link 擬似クラス

訪問していないリンクのスタイルを指定することができます。


ブラウザ

IE3 / IE4 / IE5 / IE5.5 / IE6 / N4 / N6 / N7 / O6 / O7 / O9 / Fx1 / Fx2 / IE5 mac

▲PageTop

書式

要素[.class名][#id名]:link{ 値; }

▲PageTop

サンプル

ソースコード

<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>

表示結果

linkサンプル ←訪問していないリンクは、このような表示になります。

▲PageTop

関連項目

CSS

visited / hover / active

▲PageTop