Center image using text-align center?

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

    .img-container {
      display: flex;
    }
    
    img {
      margin: auto;
    }
    

    this will make the image center in both vertically and horizontally

提交回复
热议问题