Bootstrap carousel resizing image

前端 未结 10 1197
[愿得一人]
[愿得一人] 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:30

    Use this code to set height of the image slider to the full screen / upto 100 view port height. This will helpful when using bootstrap carousel theme slider. I face some issue with height the i use following classes to set image width 100% & height 100vh.

    use this class in image tags & write following css code in style tags or style.css file

    .carousel-inner > .carousel-item > img {
      height: 100vh;
    }
    

提交回复
热议问题