您好我试图让Bootstrap Carousel响应。
目前一切正常,但如果屏幕宽度小于x px,我想删除图片;
/
.thumbnail>img, .thumbnail a>img, .carousel-inner>.item>img, .carousel-inner>.item>a>img {
display: relative;
max-width: 100%;
height:auto;
}
如果屏幕宽度是示例,请将Carousel图像1 + 2消失:低于400px宽。
答案 0 :(得分:1)
你好那里对于make response bootstrap carousel你可以根据你可以添加的html脚本添加一些媒体css:
@media (max-width: 400px) {
#myCarousel {
display: none;
}
}