Created
October 17, 2016 16:19
-
-
Save octavian-nita/1f0d319a3127d1ba4913268853104c49 to your computer and use it in GitHub Desktop.
Responsive Full Background Images
This file contains hidden or 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
| /* based on http://sixrevisions.com/css/responsive-background-image/ & comments */ | |
| html { | |
| background: #464646 url("img/bg-photo.jpg") no-repeat fixed center center; | |
| background-size: cover; | |
| height: 100%; | |
| transform: rotate(0); | |
| } | |
| @media only screen and (max-width: 767px) { | |
| body { | |
| background-image: url("img/bg-photo-mobile.jpg"); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment