Skip to content

Instantly share code, notes, and snippets.

@hlashbrooke
Last active December 19, 2015 16:29
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 hlashbrooke/5983710 to your computer and use it in GitHub Desktop.
Save hlashbrooke/5983710 to your computer and use it in GitHub Desktop.
CSS: Semi-transparent background behind opaque text
<div class="container">Lorem ipsum dolor</div>
.container {
background: rgb(170, 187, 97); /* Fallback */
background: rgba(170, 187, 97, 0.5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment