Firefox 中的水平滚动条,但 Chrome 不显示。有人知道如何从 Firefox 中删除该卷轴吗?

horizontal scrollbar in Firefox , but Chrome doesn’t show it. Anybody have any ideas how to remove that scroll from firefox?

我的 angular 应用程序在 Firefox 中遇到水平滚动条问题,但 Chrome 没有显示。有人有什么想法吗?

添加您的 CSS {overflow: hidden}。 试试这个,它会对你有所帮助

这个解决了我在 firefox 中隐藏垂直滚动条的问题

@-moz-document url-prefix() {
    html,body{overflow: hidden !important;}
}