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

Is the property text-align: center; a good way to center an image using CSS?

img {
    text-align: center;
}
share|improve this question

8 Answers

up vote 48 down vote accepted

That is not the recommended way as it is not supported by W3C.

Use this instead: img.center { display: block; margin-left: auto; margin-right: auto; }

share|improve this answer
Okay, thank you! – Web_Designer Aug 14 '11 at 6:48
i tried this method and it works! but when I tried 2 images, it didn't work, it just stack on top of each other like a totem, any ideas how to align 2 images on the same line in the middle? – PatrickSerrano Feb 28 at 4:20
the css display block basically puts all img.center on separate lines. you have to hack around the code to get your desired effect. set width:350px; or what your 2 image width is. make both images into one actual jpeg etc – Jon Mar 5 at 12:59
@PatrickSerrano: See this answer: stackoverflow.com/a/11819439/244353 – Mrchief Mar 8 at 5:44
Thanks, I worked like an charm... – user1829744 Mar 25 at 13:34

That doesn't always work... if it doesn't, try:

img {
    display: block;
    margin: 0 auto;
}
share|improve this answer

Came across this post and it worked for me:

img {
    position: absolute;
    top: 0; bottom:0; left: 0; right:0;
    margin: auto;

}

(Vertical and horizontal alignment)

share|improve this answer

Only if you need to support ancient IE browsers.

The modern approach is to do margin: 0 auto in your CSS.

Example here: http://jsfiddle.net/bKRMY/

HTML:

<p>Hello the following image is centered</p>
<p class="pic"><img src="https://twimg0-a.akamaihd.net/profile_images/440228301/StackoverflowLogo_reasonably_small.png"/></p>
<p>Did it work?</p>

CSS:

p.pic {
    width: 48px;
    margin: 0 auto;
}

Only issue ihere is that the width of the paragraph must be the same as the width of the image. If you don't put a width on the paragraph, it will not work, because it will assume 100% and your image will be aligned left, unless of course you use text-align:center.

Try out the fiddle and experiment with it if you like.

share|improve this answer

Another way of doing would be centering an enclosing paragraph:

<p style="text-align:center"><img src="..."/></p>
share|improve this answer
Doesn't answer the question. – Guandalino Jan 20 at 12:52
doesn't answer the question – Ani Jan 20 at 12:56
I would disagree, I think this does answer the question. The OP asked whether or not the property text-align: center is a good way to center an image, and did not specify that the property had to be a part of the img tag. This answer uses the property in question in an effort to provide a solution (that does work). – MandM Mar 19 at 22:19

simple method is change parent align :)

Try its parent text-align:center

share|improve this answer

Actually, the only problem with your code is that the text-align attribute applies to text (yes, images count as text) inside of the tag. You would want to put a span tag around the image and set its style to text-align: center, as so:

HTML code:

<span class="centerImage"><img src="..." /></span>

CSS code:

span.centerImage {
     text-align: center;
}

The image will be centered. In response to your question, it is the easiest and most foolproof way to center images, as long as you remember to apply the rule to the image's containing span (or div).

share|improve this answer

if you are using a class with image then the following will do

class{
    display: block;
    margin: 0 auto;
}

if it is only an image in a specific calss that you want to center align then following will do

class img {
    display: block;
    margin: 0 auto;
}
share|improve this answer

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.