Center image using text-align center?

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

    On the container holding image you can use a CSS 3 Flexbox to perfectly center the image inside, both vertically and horizontally.

    Let's assume you have

    as the image holder:

    Then as CSS you have to use:

    .container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    

    And this will make all your content inside this div perfectly centered.

提交回复
热议问题