HTML center content through margin auto not working

前端 未结 6 1641
轻奢々
轻奢々 2021-01-19 12:59

I have the following Html code

Team

6条回答
  •  北海茫月
    2021-01-19 13:53

    Images are inline level elements by default. You need to use display:block; if you want your images and margin to work properly.

    img{
     display: block;
    }
    

提交回复
热议问题