Bootstrap Carousel image doesn't align properly

前端 未结 13 1419
轮回少年
轮回少年 2020-12-02 07:10

Please take a look at the following image, we are using bootstrap carousel to rotate the images. However, when the window width is large, the image doesn\'t align with the b

13条回答
  •  执念已碎
    2020-12-02 07:56

    In Bootstrap 4, you can add mx-auto class to your img tag.

    For instance, if your image has a width of 75%, it should look like this:

    First slide
    

    Bootstrap will automatically translate mx-auto to:

    ml-auto, .mx-auto {
        margin-left: auto !important;
    }
    
    .mr-auto, .mx-auto {
        margin-right: auto !important;
    }
    

提交回复
热议问题