Twitter Bootstrap Button下拉z-index分层问题

时间:2015-05-12 11:44:31

标签: html css twitter-bootstrap z-index layer

我一直在为此而砰砰直跳。 我在我的网站上有一个评论部分,可以选择使用Twitter Bootstrap下拉按钮进行编辑,但我可以在下面看到,它被以下评论隐藏起来。

enter image description here

我知道这不是overflow问题,因为您可以在最后一条评论下看到它的底部。所以它只能是z-index分层问题。但我把所有评论放在z-index: 4z-index: 1000的下拉列表中,所以我不知道该怎么办!

这是一个jsFiddle:http://jsfiddle.net/ssL1yydx/29/

2 个答案:

答案 0 :(得分:2)

只需要更改/添加此css属性

<强>的CSS

.post{
      -webkit-animation-fill-mode: none !important;
}

小提琴http://jsfiddle.net/ssL1yydx/31/

答案 1 :(得分:1)

尝试删除:

 .animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; }
相关问题