Center image using text-align center?

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

    One more way to scale - display it:

    img {
      width: 60%; /* Or required size of image. */
      margin-left: 20% /* Or scale it to move image. */
      margin-right: 20% /* It doesn't matters much if using left and width */
    }
    

提交回复
热议问题