CSS: Transparency for all browsers


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

for the filter value I'm not quiet shure. advice is welcome!


Copy this code and paste it in your HTML
  1. .transparent_class {
  2. filter:alpha(opacity=50);
  3. filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  4. -moz-opacity:0.5;
  5. -khtml-opacity: 0.5;
  6. opacity: 0.5;
  7. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.