Answers for "boostrap 4 slider css image fit"

4

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
0

fit the image in the carrousel bootstrap

.carousel-inner > .item > img {
  width:640px;
  height:360px;
}
Posted by: Guest on May-03-2020

Browse Popular Code Answers by Language