在页脚上可见的Bootstrap轮播按钮

时间:2016-11-22 15:56:38

标签: html css twitter-bootstrap

我一直在使用bootstraps scrollspy构建一个网站。到目前为止一切都那么好,除了旋转木马按钮出现在我的页脚上

Image here

这是页脚css:

.footer {
    position: fixed;
    bottom: 0px;
    padding-top: 15px;
    width: 100%;
    height: auto;
    background-color: #222222;
}

有什么方法可以解决这个问题吗?

1 个答案:

答案 0 :(得分:2)

像@ zack6849一样,如果你将z-index属性添加到.footer css,它应该解决你的问题,只要你指定一个高于滑块的值。您应该检查元素并查看当前的z索引是什么,或者只是为页脚使用真正的高值,如z-index:10000;

您可以阅读有关z-index here

的更多信息