Make Bootstrap's Carousel both center AND responsive?

后端 未结 13 2273
北海茫月
北海茫月 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 02:53

    add this

    .carousel .item img {
       left: -9999px;  /*important */
       right: -9999px;  /*important */
       margin: 0 auto;  /*important */
       max-width: none;  /*important */
       min-width: 100%;
       position: absolute;
    }
    

    And of course one of the parent divs needs to have a position:relative, but I believe it does by default.

    See it here: http://paginacrestinului.ro/

提交回复
热议问题