Created
March 21, 2013 15:01
-
-
Save raphaelchaib/5213711 to your computer and use it in GitHub Desktop.
CSS: Fullscreen background
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
img#fullscreen-bg { | |
width: 100%; | |
min-width: 1024px; | |
height: auto; | |
position: fixed; | |
top: 0; | |
left: 0; | |
z-index: -999; | |
} | |
@media screen and (max-width: 1024px) { | |
img#fullscreen-bg { | |
left: 50%; | |
margin-left: -512px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment