Skip to content

Instantly share code, notes, and snippets.

@ggendre
Created April 20, 2011 10:13
Show Gist options
  • Save ggendre/930920 to your computer and use it in GitHub Desktop.
Save ggendre/930920 to your computer and use it in GitHub Desktop.
crossbrowser CSS mask without Javascript
/* see http://ggendre.posterous.com/css-mask-without-javascript for details */
.mask {
position:fixed !important;
position:absolute;
left: 0;
top: 0;
width:100%;
height:100%;
overflow: hidden;
padding:0 !important;
padding:0 20px;/* pour IE6*/
background-color:#FFFFFF;
z-index: 900;
filter: alpha(opacity=70);
-moz-opacity:0.7;
opacity: 0.7;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment