Skip to content

Instantly share code, notes, and snippets.

@easierbycode
Created November 5, 2015 18:51
Show Gist options
  • Save easierbycode/1586887e1c40fd27171b to your computer and use it in GitHub Desktop.
Save easierbycode/1586887e1c40fd27171b to your computer and use it in GitHub Desktop.
fullscreen background in Cordova Chrome Apps using background-size: cover
html, body {
min-height: 100%;
}
body {
background-image: url('chrome-extension://kkdbagnomgggmhndoigmfkngichpnald/background.png');
background-repeat: no-repeat;
background-position: 0 0;
background-size: cover;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment