Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have following div

<div id="over" style="position:absolute; width:100%; height:100%>
 <img src="img.png">
</div

How to align the image so as to be located in the middle and center of div ?

share|improve this question
7  
Duplicate asked 2 minutes ago: CSS: image middle – Pekka 웃 Feb 3 '11 at 15:43

6 Answers

#over img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
share|improve this answer
doesnt work, this will work if the element is not floating on any direction... – vikas devde Apr 21 at 12:26
display: block; was my pitfall. TnX – Ujjwal Singh May 9 at 8:23
<div style="display:table-cell; vertical-align:middle; text-align:center">
<img src="img.png">
</div>
share|improve this answer

Basically, setting right and left margin to auto will cause the image to center align.

<div id="over" style="position:absolute; width:100%; height:100%>
<img src="img.png" style="display: block; margin: 0 auto;">
</div>
share|improve this answer

many answer suggests to use margin:0 auto but this works only when the element you trying to make centered is not floating on left or right, that is float css attribute isn't set. In order to do this apply display attribute to table-cell and then apply margin of left and right to auto so your style will look like style="display:table-cell;margin:0 auto;"

share|improve this answer

setting the img to display:inline-block while having set the superior div to text-align:center will do the job too

share|improve this answer
#over {position:relative; text-align:center; 
       width:100%; height:100%; background:#CCC;}

#over img{
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
share|improve this answer
Are you looking for help? – Mee May 11 at 17:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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