Skip to content

Instantly share code, notes, and snippets.

@travismillerweb
Created February 7, 2014 14:18
Show Gist options
  • Save travismillerweb/8863408 to your computer and use it in GitHub Desktop.
Save travismillerweb/8863408 to your computer and use it in GitHub Desktop.
CSS - Full Frame Background Cover
.full-background {
background: url("../img/header-image-2.jpg") 50% 0 repeat fixed;
min-height: 800px;
height: 800px;
margin: 0 auto;
width: 100%;
max-width: 1920px;
position: relative;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment