通常,它的外观是这样的:
但是,如果我使用 Internet 浏览器 (Firefox) 调整页面大小,有时会发生下一个不想要的事情:
这是因为我为轮播设置了负边距,因为我想把它放在导航菜单旁边:
.carousel {
margin-top:-45px;
}
我试图用 z-index 解决它。我将下一个属性设置为导航菜单:
.top-layer{
z-index:9999;
}
在 Twitter Bootstrap Carousel 旁边:
.back-layer{
z-index:0;
}
我也试过了overflow:scroll;
。这是它的外观:
为什么 Internet 浏览器 (Firefox) 将轮播放在顶部?我们怎么能强行把它画在底部呢?