If I have a fixed sized container div, and an unknown sized image, how do I horizontally and vertically center it?
You could use background-position for that.
background-position
#your_div { background-position: center center; background-image: url('your_image.png'); }