Is the property text-align: center; a good way to center an image using CSS?
img {
text-align: center;
}
|
|
|
That is not the recommended way as it is not supported by W3C. Use this instead: |
|||||||||||
|
|
That doesn't always work... if it doesn't, try:
|
|||
|
|
|
Came across this post and it worked for me:
(Vertical and horizontal alignment) |
|||
|
|
|
Only if you need to support ancient IE browsers. The modern approach is to do Example here: http://jsfiddle.net/bKRMY/ HTML:
CSS:
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 Try out the fiddle and experiment with it if you like. |
||||
|
|
|
Another way of doing would be centering an enclosing paragraph:
|
|||||||
|
|
Actually, the only problem with your code is that the HTML code:
CSS code:
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 |
|||
|
|
|
if you are using a class with image then the following will do
if it is only an image in a specific calss that you want to center align then following will do
|
|||
|
|