0

我正在使用 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;
}

我希望图像始终大于容器并且始终成比例。

4

1 回答 1

0

您正在寻找 CSSbackground-size属性。

使图像拉伸以使用 100% 的width同时保持纵横比...

background-size: 100% auto;

使图像拉伸以使用 100% 的height同时保持纵横比...

background-size: auto 100%;
于 2013-09-16T05:00:51.247 回答