Skip to content

Instantly share code, notes, and snippets.

@sc212
Created April 2, 2012 20:30
Show Gist options
  • Save sc212/2287020 to your computer and use it in GitHub Desktop.
Save sc212/2287020 to your computer and use it in GitHub Desktop.
CSS: Alpha outpacity, set outpacity to elements
.class,#id {
filter: alpha(opacity=60); /* MSIE/PC */
-moz-opacity: 0.6; /* Mozilla 1.6 and older */
opacity: 0.6;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment