Reiner: Immer type="text/css" ?

Ich bin ziemlicher Anfänger mit CSS, dachte aber dass es eventuell für meine Rollover-Buttons auch eingesetzt werden kann. Hier ist der Ausgangspunkt, der aber auf Text beschränkt ist:

<style type="text/css">
a:link { font-weight:bold; color:#0000E0; text-decoration:none }
a:visited { font-weight:bold; color:#000080; text-decoration:none }
a:hover { font-weight:bold; color:#E00000; text-decoration:none }
a:active { font-weight:bold; color:#E00000; text-decoration:underline }
a:focus { font-weight:bold; color:#00E000; text-decoration:underline }
</style>

Könnte man da nicht sowas machen wie:
a:link      { bild.gif   }
a:visited   { bild2.gif  }
.
.

Wäre nett, wenn mir da jemand weiterhelfen könnte.

Liebe Grüsse aus Mexiko
Reiner

  1. Hallo,

    Könnte man da nicht sowas machen wie:
    a:link      { bild.gif   }
    a:visited   { bild2.gif  }
    .
    .

    a:pseudoklasse {background-image: url(bild.gif);}

    ggf. CSS2-like mit url('bild.gif')

    Beispiel: http://www.styleassistant.de/tips/bgimagelink.htm.

    MfG, Thomas

  2. hi

    Könnte man da nicht sowas machen wie:
    a:link      { bild.gif   }
    a:visited   { bild2.gif  }

    Theorie:
    a:link{content:url(bild.gif);}

    zur Praxis sag ich dann mal wieber nix :)