Bootstrap Carousel image doesn't align properly

前端 未结 13 1337
轮回少年
轮回少年 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:58

    With bootstrap 3, just add the responsive and center classes:

     <img class="img-responsive center-block" src="img/....jpg" alt="First slide">
    

    This automatically does image resizing, and centers the picture.

    Edit:

    With bootstrap 4, just add the img-fluid class

    <img class="img-fluid" src="img/....jpg">
    
    0 讨论(0)
提交回复
热议问题