jquery select2:使单选的高度与多选的高度匹配?

hmmo2u0o  于 2023-06-22  发布在  jQuery
关注(0)|答案(2)|浏览(122)

我正在使用令人惊叹的select2 jquery plugin。我想使单选框的高度与多选框的高度相匹配。
我尝试了各种CSS修复,包括:

.select2-container .select2-choice {
    height: 36px;
}

但似乎都不管用有人能帮忙吗?
JSFiddle在这里:http://jsfiddle.net/vfa4831b/1/

eagi6jfj

eagi6jfj1#

把它添加到你的CSS中:

.select2-container .select2-selection--single {
    height: 32px;
}

http://jsfiddle.net/vfa4831b/3/

zbwhf8kr

zbwhf8kr2#

.select2-selection__rendered {
    line-height: 35px !important;
}

.select2-container .select2-selection--single {
    height: 35px !important;
}

.select2-selection__arrow {
    height: 35px !important;
}

相关问题