CSS: Transparent Class


/ Published in: CSS
Save to your folder(s)

- opacity: 0.5; Funktioniert in den neuesten Versionen von Firefox, Safari und Opera
- filter:alpha(opacity=50); für den Internet Explorer.
-moz-opacity:0.5; für ältere Versionen der Mozilla Browser wie beispielsweise Netscape Navigator, Mozilla etc.
-khtml-opacity: 0.5; für die älteren Versionen von Safari (1.x), Konqueror etc.


Copy this code and paste it in your HTML
  1. .class-name {
  2. filter:alpha(opacity=50);
  3. -moz-opacity:0.5;
  4. -khtml-opacity: 0.5;
  5. opacity: 0.5;
  6. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.