Skip to content

Instantly share code, notes, and snippets.

@vrushank-snippets
Created March 23, 2012 11:55
Show Gist options
  • Save vrushank-snippets/2169986 to your computer and use it in GitHub Desktop.
Save vrushank-snippets/2169986 to your computer and use it in GitHub Desktop.
CSS : Cross browser opacity
selector {
opacity: .75; /* Standard: FF gt 1.5, Opera, Safari */
filter: alpha(opacity=75); /* IE lt 8 */
-ms-filter: "alpha(opacity=75)"; /* IE 8 */
-khtml-opacity: .75; /* Safari 1.x */
-moz-opacity: .75; /* FF lt 1.5, Netscape */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment