Julia: Verweisende Bilder transparent werden lassen

Hallo, noch eine Frage:

ich würde gerne die Bilder, die als Links fungieren beim anklicken und drüberscrollen (active und hover) halbtransparent werden lassen.
in einem forum habe ich folgendes gefunden:

filter:alpha(opacity=50);
-moz-opacity:.50;
opacity:.50;

was bei mir aber so eingebaut nicht funktioniert hat:

.bilder {margin-top:90px; margin-left:30px; box-shadow:3px 3px 10px #333333}

a:link { text-decoration:none;}
a:visited { text-decoration:none;}
a:hover { text-decoration:none; filter:alpha(opacity=50);
-moz-opacity:.50;
opacity:.50;}
a:active { text-decoration:none; filter:alpha(opacity=50);
-moz-opacity:.50;
opacity:.50;}
a:focus { text-decoration:none;}

kann mir jemand weiterhelfen?
vielen dank!

  1. Om nah hoo pez nyeetz, Julia!

    a:link { text-decoration:none;}
    a:visited { text-decoration:none;}
    a:hover { text-decoration:none; filter:alpha(opacity=50);
    -moz-opacity:.50;
    opacity:.50;}
    a:active { text-decoration:none; filter:alpha(opacity=50);
    -moz-opacity:.50;
    opacity:.50;}
    a:focus { text-decoration:none;}

    Die Reihenfolge ist wichtig. (selfhtml-wiki)

    text-decoration:none; braucht nur einmal angegeben zu werden.

    Matthias

    --
    1/z ist kein Blatt Papier.

    1. Ah, jetzt klappts...danke!

      Om nah hoo pez nyeetz, Julia!

      a:link { text-decoration:none;}
      a:visited { text-decoration:none;}
      a:hover { text-decoration:none; filter:alpha(opacity=50);
      -moz-opacity:.50;
      opacity:.50;}
      a:active { text-decoration:none; filter:alpha(opacity=50);
      -moz-opacity:.50;
      opacity:.50;}
      a:focus { text-decoration:none;}

      Die Reihenfolge ist wichtig. (selfhtml-wiki)

      text-decoration:none; braucht nur einmal angegeben zu werden.

      Matthias