Search code examples
csstwitter-bootstrapalignmentcarousel

Bootstrap Carousel Caption Top Alignment?


I'm not trying to do anything too fancy here, but instead of the Bootstrap Carousel Captions defaulting to aligning to the bottom of the Carousel, how do I get them to default align to the top?


Solution

  • Add this to your css to change the element position:

    .carousel-caption {
        top: 0;
        bottom: auto;
    }
    

    See demo fiddle