Vertically center text in Bootstrap carousel

后端 未结 4 899
無奈伤痛
無奈伤痛 2021-01-05 14:09

I have trouble creating a carousel in Bootstrap 4 with text centered both horizontally and vertically.

I have created the bootply with a carousel, but the text is ju

4条回答
  •  孤街浪徒
    2021-01-05 14:29

    You can use display: table; and display: table-cell; display along with vertical-align: middle;

    .carousel-item {
        display: table;
        text-align: center;
    }
    
    .carousel-item h1 {
        display: table-cell;
        text-align: center;
        vertical-align: middle;
    }
    

    The key here is vertical-align: middle; which works only if a div is a table.

    Regarding the horizontal alignment, the text-align: center; goes to .carousel-item. I updated my code.

提交回复
热议问题