当使用代码
调整jquery选择的高度时.chosen-results {
height: 82px;
}
它无法正确计算高度,当您使用键盘选择其中的选项时,不会显示选项。我该如何解决?
jsfiddle:http://jsfiddle.net/umcc9/6/
步骤:
1) Click on select box
2) Click Down key multiple times
3) When Val-4 will be highlight, it will not be visible in container
答案 0 :(得分:0)
Ok找到我需要设置max-height
的解决方案.chosen-results {
max-height: 82px;
}