Bootstrap 3 default Carousel: How to move indicators down and outside of slide container?

后端 未结 5 1748
野性不改
野性不改 2021-02-01 02:02

What\'s an easy (and clean) way to move Bootstrap 3\'s carousel indicators down and outside of the slide container so it\'s not overlayed on the photos? See image below on where

5条回答
  •  清酒与你
    2021-02-01 02:47

    You can push them below the slider like this...

    .carousel-indicators {
      bottom:-50px;
    }
    

    Leave space below the carousel so that the pushed indicators don't interfere with content below the slider..

    .carousel-inner {
       margin-bottom:50px;
    }
    

    Demo

提交回复
热议问题