2

我正在使用 select2 代替搜索框。

在这里我用来加载这样的国家值

 <label class="description"> Countries </label>
<input type="text" placeholder="Enter Comma Separated Countries..." class="save_check" 
    style="overflow: auto; width: 208px; margin: 5px 0px 5px; border-style: solid;" id="countries" />

这里发生的情况是,每当我在其中选择值时,此输入类型文本的高度会继续增加,超出其父 div 高度,我不希望它随着参数的增加而滚动。在select2.css我改变overflow: auto但没有工作。

4

1 回答 1

4

将高度设置为overflow: auto要工作的元素。

.select2-container-multi .select2-choices {
 height: 70px; 
 overflow: auto;
}
于 2013-04-15T14:40:02.837 回答