Center an image horizontally using CSS

前端 未结 4 1310
野的像风
野的像风 2020-11-28 12:01

I am trying to center a image horizontally using css.

I am displaying my image on the screen with the following HTML code:

4条回答
  •  盖世英雄少女心
    2020-11-28 12:03

    Try this for your CSS:

    .center img {        
      display:block;
      margin-left:auto;
      margin-right:auto;
    }
    

    and then add to your image to center it:

    class="center"
    

提交回复
热议问题