Center image using text-align center?

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

    If you are using a class with an image then the following will do

    class {
        display: block;
        margin: 0 auto;
    }
    

    If it is only an image in a specific class that you want to center align then following will do:

    class img {
        display: block;
        margin: 0 auto;
    }
    

提交回复
热议问题