我正在使用带有轮播模板的引导程序构建一个网站。我对旋转木马内部的图像有一个问题:当我调整浏览器窗口的大小时,它们会被拉伸,因此看起来很糟糕。我没有修改默认的bootstrap css和html值。我该如何解决这个问题?
/* Carousel base class */
.carousel {
height: 670px;
margin-bottom: 60px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
z-index: 10;
}
/* Declare heights because of positioning of img element */
.carousel .item {
height: 670px;
max-width: 100%;
background-color: #777;
}
.carousel-inner > .item > img {
position: absolute;
top: 0;
left: 0;
min-width: 100%;
height: 850px;
}