How can I center an image in Bootstrap?

后端 未结 3 2295
遥遥无期
遥遥无期 2020-11-28 05:27

I am struggling to center an image using only Bootstrap\'s CSS-classes. I already tried several things. One was adding Bootstrap CSS-class mx-auto to the

3条回答
  •  误落风尘
    2020-11-28 05:38

    Since the img is an inline element, Just use text-center on it's container. Using mx-auto will center the container (column) too.

    By default, images are display:inline. If you only want the center the image (and not the other column content), make the image display:block using the d-block class, and then mx-auto will work.

    Demo: http://codeply.com/go/iakGGLdB8s

提交回复
热议问题