Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to make an image center (vertically & horizontally) inside a bigger div

I have a div which is with absolute position (width/height are 100%). Notice, not px, percents.
Inside this div I have an image. How do I center this image in this div?

share|improve this question
You want to center the image both vertically AND horizontally, yes? – Su' Feb 3 '11 at 19:42

marked as duplicate by George Stocker Jun 27 '12 at 1:29

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 2 down vote accepted

CSS:

/* where margin-left = {img width}/2, and margin-top= {img height}/2 */
.bigdiv {
   width:100%;
   height:100%;
   position:absolute;
}
.bigdiv img {
   position:absolute;
   left:50%;
   top:50%;
   margin-left:-10px;
   margin-top:-10px;
}

HTML:

<div class="bigdiv"><img src="eg.png" /></div>

You could also put your margin-left, margin-top commands as a style on the img tag instead (since they're unique per image).

share|improve this answer
Your example works but add horizontal and vertical scrolls on Safari 5.0.3 (Mac OS X 10.6.6) My image is 100px/100px so the values of margin(left|right) are -50px How to fix that ? – ruby_newbie Feb 3 '11 at 20:00
That's like the default body padding safari puts in, try adding CSS: body {margin:0;padding:0;} – Rudu Feb 3 '11 at 20:08
Now works. Thanks. – ruby_newbie Feb 3 '11 at 20:19

Not the answer you're looking for? Browse other questions tagged or ask your own question.