Bootstrap

bootstrap设置轮播的高度、宽度

Bootstrap使用总结(Carousel设置大小。Item设置大小,Img设置大小)

在bootstrap中使用carousel,先要给.carousel一个大小,

要想使carousel和item和img随着浏览器大小而变,就要设置

.carousel .item {
  height: 500px;
  background-color: #777;
}
.carousel-inner > .item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 500px;
}

转载自:https://www.cnblogs.com/hfeng007/p/9183135.html

;