Make Bootstrap's Carousel both center AND responsive?

后端 未结 13 2191
北海茫月
北海茫月 2020-12-05 02:45

I want my carousel images to be at the center (horizontally), which is not by default. I follow the solution at this topic.

However, using this solution, when the ca

相关标签:
13条回答
  • 2020-12-05 03:15

    None of the above solutions worked for me. It's possible that there were some other styles conflicting.

    For myself, the following worked, hopefully it may help someone else. I'm using bootstrap 4.

    .carousel-inner img {       
       display:block;
       height: auto; 
       max-width: 100%;
    }
    
    0 讨论(0)
提交回复
热议问题