我可以使用两个溢出属性吗?

时间:2019-05-08 03:09:10

标签: css bootstrap-modal overflow jquery-select2

我正在使用Bootstrap和Select2。

我在Select2上遇到了无法点击的搜索框错误,该错误是通过在模式中添加overflow: visible来解决的。

<div class="modal fade" id="myModal1" role="dialog" aria-labelledby="myModalLabel1" aria-hidden="true" style="overflow:visible">

但是这导致我的模态无法滚动。将其更改为overflow:scroll会导致再次出现先前的Select2错误。

我该如何处理?我可以使用两个溢出属性吗?

1 个答案:

答案 0 :(得分:0)

在找到了可能适合我的解决方案的Google之后,我终于从here in pymarco's answer找到了真实答案。您必须将以下代码添加到ld.so

$(document).ready(function() { });

这使Select2搜索和模式滚动都起作用。