Bootstrap Selectpicker在中心发出错误

时间:2017-07-11 14:12:03

标签: twitter-bootstrap bootstrap-selectpicker

我遇到了Bootstrap Selectpicker的错误(?)。

在Chrome上(到目前为止这只发生在Chrome上),选择中间时,您不会选择selectpicker下拉列表,而是选择实际的原始选择,如下所示:

enter image description here

从图像中可以看出,原始的选择drowpdown被选中并显示:

enter image description here

其他人遇到这种情况并知道如何解决这个问题?

只能在中间选择宽度约10-20像素:/

1 个答案:

答案 0 :(得分:1)

将此添加到我的site.ccs帮助我解决了这个问题:

.bootstrap-select > select {
    z-index: 0 !important;
}

显然,问题在于select的表单控件属性(如果你在代码中删除它,问题已解决),这会添加z-index,从而打破Chrome。