CSS opacity and transparency setting


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

Useful for setting transparent dropdowns, etc.


Copy this code and paste it in your HTML
  1. #transdiv {
  2. filter:alpha(opacity=75);
  3. -moz-opacity:.75;
  4. opacity:.75;
  5. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.