xinconan / blog

闲谈
7 stars 0 forks source link

css隐藏滚动条 #5

Open xinconan opened 6 years ago

xinconan commented 6 years ago

对于Chrome、Safari和Opera,可以使用如下CSS:

.container::-webkit-scrollbar {
  display: none;
}

IE或 Edge 可以使用:

.container {
  -ms-overflow-style: none;
}

至于 Firefox,无法隐藏滚动条!

hhzzcc commented 4 years ago

firefox隐藏滚动条

hhzzcc commented 4 years ago

scrollbar-width: none;