Bootstrap carousel resizing image

前端 未结 10 1222
[愿得一人]
[愿得一人] 2020-12-05 11:02

Hi I am trying to make a carousel on my wordpress website with bootstrap. I would like to put four block links next to it. I have the blocks there and the images are scrolli

10条回答
  •  再見小時候
    2020-12-05 11:32

    The reason why your image is resizing which is because it is fluid. You have two ways to do it:

    1. Either give a fixed dimension to your image using CSS like:

      .carousel-inner > .item > img {
        width:640px;
        height:360px;
      }
    2. A second way to can do this:

      .carousel {
        width:640px;
        height:360px;
      }

提交回复
热议问题