Css 如何确保图像显示在我的twitter bootstrap 3输入字段上

Css 如何确保图像显示在我的twitter bootstrap 3输入字段上,css,twitter-bootstrap,Css,Twitter Bootstrap,我正在使用jquery插件帮助在页面上滚动到底部和顶部 我的问题是插件的图像没有显示在我的twitter bootstrap 3输入字段上 这个插件的css非常简短,所以我将把它粘贴到下面。如何修改它以确保图像显示在输入字段的顶部 谢谢 #totopscroller { position: fixed; right: 30px; bottom: 30px; width: 43px; } #totopscroller div { width: 49px;

我正在使用jquery插件帮助在页面上滚动到底部和顶部

我的问题是插件的图像没有显示在我的twitter bootstrap 3输入字段上

这个插件的css非常简短,所以我将把它粘贴到下面。如何修改它以确保图像显示在输入字段的顶部

谢谢

#totopscroller {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 43px;
}
#totopscroller div {
    width: 49px;
    height: 43px;
    position: relative;
}
#totopscroller a {
    display: none;
    background: url('totopicons.png');
    width: 49px;
    height: 43px;
    display: block;
    text-decoration: none;
    border: medium none;
    margin: 0 0 -1px;
    border: 1px solid #949494;
}
.totopscroller-top {
    background-position: 0 0 !important;
}
.totopscroller-lnk {
    background-position: 0 -43px !important;
}
.totopscroller-prev {
    background-position: 0 -129px !important;
    position: absolute;
    top: 0;
    left: 0;
}
.totopscroller-bottom {
    background-position: 0 -86px !important;
    position: absolute;
    top: 0;
    left: 0;
}
使用

.element{
  z-index:22;
}