Created
July 10, 2012 04:30
-
-
Save matthewcopeland/3081018 to your computer and use it in GitHub Desktop.
just for you, schab. This will center your image on a single page.
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> | |
| <style> | |
| html, body, div { margin: 0; padding: 0; position: fixed; top: 0; right: 0; bottom: 0; left: 0; height: 100%; width: 100%; } | |
| div { display: table; text-align: center; } | |
| img { display: table-cell; vertical-align: middle; position: relative; } | |
| </style> | |
| </head> | |
| <body> | |
| <div> | |
| <img src="bluebird.png" alt="bluebird" /> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment