Center image using text-align center?

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

    display: block with margin: 0 didn't work for me, neither wrapping with a text-align: center element.

    This is my solution:

    img.center {
        position: absolute;
        transform: translateX(-50%);
        left: 50%;
    }
    

    translateX is supported by most browsers

提交回复
热议问题