Verweisende Bilder transparent werden lassen
Julia
- css
0 Matthias Apsel
0 Julia
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!
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
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