Bootstrap carousel width and height

前端 未结 8 1541
不思量自难忘°
不思量自难忘° 2020-12-12 20:55

Im trying to do a bootstrap carousel with full width for the images (width: 100%) and a fixed height but if I set the width to 100% the height automacally is taking the 100%

8条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-12 21:04

    Hey guys i had the same problem,

    my height changed to its original height while my slide was animating to the left, ( in a responsive website )

    so i fixed it with CSS only :

    .carousel .item.left img{
        width: 100% !important;
    }
    

提交回复
热议问题