Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要禁用 slickgrid 水平滚动条。我只有一列并且有 forceFitColumns :是的。
有可能吗?
谢谢
你可以用一点 CSS 来做到这一点。尝试将此添加到您的页面。
.slick-viewport { overflow-x: hidden !important; }
请注意,!important 很重要,因为样式被网格代码内联,所以这会覆盖它......
高温高压