Stretch and fill image in Bootstrap carousel

前端 未结 14 1321
情歌与酒
情歌与酒 2021-01-11 13:11

I am using bootstrap carousal and having some problem with image height and width. Even though I define it in the img attribute it still displays a

14条回答
  •  一向
    一向 (楼主)
    2021-01-11 13:59

    That you have width in placeholder should not matter, put this in your css and it should work, If it works you can try remove !important.

     .carousel img {
            width:100% !important;
            min-width:100 !important;
            height: auto;
        }
    

    .img-responsive in bootstrap will just set the width to 100%, So in the case that the image original proportions are less than carousel width it will not fill it out.

提交回复
热议问题