Created
May 24, 2012 07:59
-
-
Save dziudek/2780111 to your computer and use it in GitHub Desktop.
Image always centered vertically and horizontally
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
/** | |
* Image always centered vertically and horizontally | |
*/ | |
div#main { | |
border: 2px solid #aaa; | |
display: table; | |
width: 100%; | |
height: 300px; | |
} | |
div#main > div { | |
display: table-cell; | |
vertical-align: middle; | |
} | |
div > img { | |
display: block; | |
margin: 0 auto; | |
max-width: 100%; | |
height: auto; | |
} |
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
<div id="main"> | |
<div> | |
<img src="http://placekitten.com/600/260" alt="Kitty 200x200 ;)" /> | |
</div> | |
</div> |
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
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment