Answers for "Bootstrap Full-width Carousel Slides"

2

size carousel bootstrap 4

.carousel .item {
  height: 300px;
}

.item img {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 300px;
}
Posted by: Guest on July-28-2020
2

how to make full screen images slider in bootstrap 4

.carousel-item {
  height: 100vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
Posted by: Guest on December-05-2019

Code answers related to "Bootstrap Full-width Carousel Slides"

Browse Popular Code Answers by Language