overflow-y 滚动不会在 react-autosuggest 中移动
overflow-y scroll doesn't move in react-autosuggest
我找到了第一个激活卷轴的解决方案,但它对我不起作用。使用键盘上的向下箭头切换元素时,ul 块不会向下滚动。
我的版本 react-autosuggest 是“^10.1.0”
.react-autosuggest__suggestions-list {
margin: 0;
padding: 0;
max-height: 200px;
overflow-y: auto;
}
https://codesandbox.io/s/react-autosuggest-forked-4519do?file=/src/styles.css
我通过将 .react-autosuggest__suggestions-list class 替换为 #react-autowhatever-1
解决了这个问题
我找到了第一个激活卷轴的解决方案,但它对我不起作用。使用键盘上的向下箭头切换元素时,ul 块不会向下滚动。 我的版本 react-autosuggest 是“^10.1.0”
.react-autosuggest__suggestions-list {
margin: 0;
padding: 0;
max-height: 200px;
overflow-y: auto;
}
https://codesandbox.io/s/react-autosuggest-forked-4519do?file=/src/styles.css
我通过将 .react-autosuggest__suggestions-list class 替换为 #react-autowhatever-1
解决了这个问题