I am looking for a way to center the image vertically, something that is similar to text-align center. text-align center is kinda efficient since y
text-align center
text-align
All in the middle ...
#container { position: relative; width:200px; height:200px; background:#040; } #container #img { background: url("url_to_image.jpg") no-repeat center center; position:absolute; top:0; bottom:0; left:0; right:0; }
http://jsfiddle.net/djwave28/PD6J4/