Skip to content

Instantly share code, notes, and snippets.

@aanomm
Created July 18, 2012 03:18
Show Gist options
  • Save aanomm/3133953 to your computer and use it in GitHub Desktop.
Save aanomm/3133953 to your computer and use it in GitHub Desktop.
CSS: transparency
/* http://hammerspace.co.uk/2011/10/cross-browser-alpha-transparent-background-css */
#div{
background:rgb(255,0,0);
background: transparent\9;
background:rgba(255,0,0,0.3);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4cFF0000,endColorstr=#4cFF0000);
zoom: 1;
}
#div:nth-child(n) {
filter: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment