我在我的应用程序中使用了react提及。我在建议列表中有更多的项目。有没有可能固定一个高度并给它添加滚动条?
https://github.com/signavio/react-mentions
发布于 2020-01-29 18:00:17
你可以像这样添加样式。
.mentions__suggestions__list { max-height: 100px; overflow-y: auto; }
或者在组件中提供内联样式。
https://stackoverflow.com/questions/59963424
相似问题