How to make bootstrap carousel image responsive?

前端 未结 6 1216
感情败类
感情败类 2020-12-01 10:57

I want to keep the same ratio of the images. The problem is it streches when the browser is wide. and squezes when it\'s reduced.

I have checked all SO question here

6条回答
  •  甜味超标
    2020-12-01 11:30

    You can do a typical use of margin, to improve your result centering your image.

    .carousel-inner > .carousel-item > img {
    margin: 0; //If you have images of very different sizes.    
    max-width: 100%; }
    

提交回复
热议问题