Make bootstrap carousel responsive on height

后端 未结 7 1753
夕颜
夕颜 2021-02-05 14:51

I need to customize BS carousel, to make images size responsive corectly. I need the carousel to adapt to the height of the active slides images initiel height. When the viewpor

7条回答
  •  萌比男神i
    2021-02-05 15:41

    I fixed it adding a class to the images in the carousel, for example :

    
    

    and in the css:

    .fixed-height {
        max-height: 400px;
    }
    

提交回复
热议问题