Created
September 30, 2009 14:44
-
-
Save jasonkarns/198147 to your computer and use it in GitHub Desktop.
Cross-Browser RGBa
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* IE 7 and below: RGBa value in hex: aaRRGGBB */ | |
* { | |
background:transparent; | |
zoom: 1; | |
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7FC8C8C8,endColorstr=#7FC8C8C8); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* IE8: RGBa value in hex: aaRRGGBB */ | |
* { | |
background:transparent; | |
-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#7FC8C8C8,endColorstr=#7FC8C8C8)"; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
/* 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