Skip to content

Instantly share code, notes, and snippets.

@whistler
Created August 12, 2011 20:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whistler/1142882 to your computer and use it in GitHub Desktop.
Save whistler/1142882 to your computer and use it in GitHub Desktop.
Opacize on mouseover CSS
.transparent
{zoom: 1;
filter: alpha(opacity=70);
opacity: 0.7;
}
.transparent:hover
{
opacity:1;
-moz-opacity:1;
filter:alpha(opacity=100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment