Created
November 11, 2014 19:52
-
-
Save lmccart/2ca1b2bb13e3a8d02f43 to your computer and use it in GitHub Desktop.
centered image example
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
<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