Skip to content

Instantly share code, notes, and snippets.

@jasonkarns
Created September 30, 2009 14:44
Show Gist options
  • Save jasonkarns/198147 to your computer and use it in GitHub Desktop.
Save jasonkarns/198147 to your computer and use it in GitHub Desktop.
Cross-Browser RGBa
/* IE 7 and below: RGBa value in hex: aaRRGGBB */
* {
background:transparent;
zoom: 1;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7FC8C8C8,endColorstr=#7FC8C8C8);
}
/* IE8: RGBa value in hex: aaRRGGBB */
* {
background:transparent;
-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#7FC8C8C8,endColorstr=#7FC8C8C8)";
}
* {
/* Solid color fallback for no-RGBa support */
background: rgb(200, 200, 200);
/* RGBa declaration */
background: rgba(200, 200, 200, 0.5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment