How can I center an image in Bootstrap?

后端 未结 3 2275
遥遥无期
遥遥无期 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:47

    Three ways to align img in the center of its parent.

    1. img is an inline element, text-center aligns inline elements in the center of its container should the container be a block element.

    
    

    1. mx-auto centers block elements. In order to so, change display of the img from inline to block with d-block class.

    
    

    1. Use d-flex and justify-content-center on its parent.

    
    

提交回复
热议问题