Center image using text-align center?

后端 未结 24 1506
终归单人心
终归单人心 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:37

    That will not work as the text-align property applies to block containers, not inline elements, and img is an inline element. See the W3C specification.

    Use this instead:

    img.center {
        display: block;
        margin: 0 auto;
    }

提交回复
热议问题