Center an image horizontally using CSS

前端 未结 4 1309
野的像风
野的像风 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:22

    use position absolute and margin like this

    img.loading{
      position: absolute;
      left: 50%;
      margin-left: -(half ot the image width)px
    }
    

提交回复
热议问题