📜  css 如何删除水平滚动条 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:09.834000             🧑  作者: Mango

代码示例4
/* this works for vertical scrolling also

this is useful for those who can't use overflow: hidden or any other solution
because the css on the website changes in someway */

::-webkit-scrollbar:horizontal {
  display: none;
}