Center image using text-align center?

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

    Sometimes we directly add the content and images on the WordPress administrator inside the pages. When we insert the images inside the content and want to align that center. Code is displayed as:

     **

    **

    In that case you can add CSS content like this:

    article p img{
        margin: 0 auto;
        display: block;
        text-align: center;
        float: none;
    }
    

提交回复
热议问题