bootstrap轮播图缩小屏幕后,图片缩小了高度不能填充。

这是CSS的代码。
.carousel{
height:400px;
background-color:Black;
}
.carousel .item{
height:400px;
background-color:Black;
}
.carousel img{
width:100%;
}


就是已经适应平铺了 但是不知道如何设置它的高度随着屏幕变换而减少
已邀请:

赞同来自:

@media(min-width: 992px){
.xxx { height: 200px;}
}
.carousel img { width: 100%; height: auto;}

要回复问题请先登录注册