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;
}