Created
September 12, 2011 04:49
-
-
Save ghostbar/1210608 to your computer and use it in GitHub Desktop.
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
<!doctype html> | |
<head> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<img id="bg" src="/img/bg.jpg"> | |
<p>Content</p> | |
</body> | |
</html> |
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#bg { | |
min-width: 100%; | |
min-height: 100%; | |
/* Proportionate re-dimension */ | |
width: 100%; | |
height: auto; | |
position: fixed; top: 0; left: 0; | |
z-index: -1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment