Created
January 19, 2012 15:36
-
-
Save ajuliano/1640630 to your computer and use it in GitHub Desktop.
Center (vertically and horizontally) an image in 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
div.container { | |
height: X; | |
line-height: X; | |
text-align: center; | |
width: Y; | |
} | |
div.container img { | |
vertical-align: middle; | |
} | |
/* see http://haslayout.net/css/No-line-height-Vertical-Center-on-Images-Bug to make it work in lte IE7*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment