Bootstrap carousel multiple frames at once

前端 未结 14 1210
清酒与你
清酒与你 2020-11-22 07:51

This is the effect I\'m trying to achieve with Bootstrap 3 carousel

\"enter

In

14条回答
  •  滥情空心
    2020-11-22 08:08

    Update 2019-03-06 -- Bootstrap v4.3.1

    It seems the new Bootstrap version adds a margin-right: -100% to each item, therefore in the responsive solution given in the most upvoted answer in here, this property should be reset, e.g.:

    .carousel-inner .carousel-item {
        margin-right: inherit;
    }
    

    A working codepen with v4.3.1 in LESS.

提交回复
热议问题