Stretch and fill image in Bootstrap carousel

前端 未结 14 1467
情歌与酒
情歌与酒 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 14:00

    Make your image take up 100% of the container size. using height:100% and width:100%.

    Then restrict the size by setting values of the container to desired size.

    .item{
      height:300px;
      width:350px;
    }
    .item img{
      width:100%;
      height:100%;
    }
    

    I hope this helps.

提交回复
热议问题