Skip to content

Instantly share code, notes, and snippets.

@nick-thompson
Created April 14, 2013 16:09
Show Gist options
  • Save nick-thompson/5383238 to your computer and use it in GitHub Desktop.
Save nick-thompson/5383238 to your computer and use it in GitHub Desktop.
/**
* A cool trick for making a transparent background image
* using only pseudo-elements.
*/
body:after {
content: "",
background: url(/path/to/your/sweet/image.png) no-repeat center center fixed;
background-size: cover;
opacity: 0.1;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: fixed;
z-index: -1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment