我正在使用 twitter 的引导程序,并且正在使用轮播。我希望图像具有 500 像素的固定高度和大于 100% 的宽度,从而允许图像始终填充容器
.carousel {
height: 500px;
margin-bottom: 60px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
z-index: 10;
}
.carousel .item {
height: 500px;
background-color: #777;
}
.carousel-inner > .item > img {
position: center;
top: 0;
left: 0;
min-width: = 100%;
height: 500px;
}
我希望图像始终大于容器并且始终成比例。