Last active
April 11, 2018 15:54
-
-
Save WuerfelDev/d951c686c5380c3a62474e9ed2b1e186 to your computer and use it in GitHub Desktop.
One Image: as big as possible. Lightweight.
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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<title>Title</title> | |
<style> | |
body { | |
margin: 0px; | |
height: 100%; | |
width: 100%; | |
background-color: lightgrey; | |
background-image: url('logo.png'); | |
background-size: contain; | |
background-repeat: no-repeat; | |
background-position: center center; | |
background-attachment: fixed; | |
} | |
</style> | |
</head> | |
<body></body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment