Select2 多选项目显示在输入字段之外,与其他字段重叠

问题描述 投票:0回答:2

我在 Django 应用程序中使用 Select2 多重选择,并且遇到一个问题,即所选项目被绘制在输入字段之外。你对 CSS 是如何被搞乱导致这种情况有什么想法吗?

显示字段外多选项目的图像

image showing multi-select items outside the field

谢谢

css django forms jquery-select2
2个回答
2
投票

已经很久了吗? 试试这个

    .select2-selection--multiple {
    overflow: hidden !important;
    height: auto !important;
}

0
投票

您需要使其可滚动 y 轴,以便在选择时不会丢失信息。

.select2-selection--multiple {
            overflow-x: hidden !important;
            height: auto !important;
            overflow-y: scroll !important;
  }

© www.soinside.com 2019 - 2024. All rights reserved.