Center image using text-align center?

后端 未结 24 1613
终归单人心
终归单人心 2020-11-21 17:53

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

img {
    text-align: center;
}
24条回答
  •  日久生厌
    2020-11-21 18:42

    The simplest solution I found was to add this to my img-element:

    style="display:block;margin:auto;"
    

    It seems I don't need to add "0" before the "auto" as suggested by others. Maybe that is the proper way, but it works well enough for my purposes without the "0" as well. At least on latest Firefox, Chrome, and Edge.

提交回复
热议问题