Skip to content

Instantly share code, notes, and snippets.

@lmccart
Created November 11, 2014 19:52
Show Gist options
  • Save lmccart/2ca1b2bb13e3a8d02f43 to your computer and use it in GitHub Desktop.
Save lmccart/2ca1b2bb13e3a8d02f43 to your computer and use it in GitHub Desktop.
centered image example
<html>
<head>
<style>
#centered {
width: 100px;
margin: 300px auto; // top offset 300px, side margin auto (centered)
}
</style>
</head>
<body>
<img id="centered" src="cat.jpg" />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment