Skip to content

Instantly share code, notes, and snippets.

@matthewcopeland
Created July 10, 2012 04:30
Show Gist options
  • Save matthewcopeland/3081018 to your computer and use it in GitHub Desktop.
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.
<!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