分类 VUE 下的文章

用CSS隱藏滾動條

//隱藏垂直滾動條
::-webkit-scrollbar{
  width: 0px;
}
//隱藏水平滾動條
::-webkit-scrollbar{
  height: 0px;
}
//隱藏全部滾動條
::-webkit-scrollbar{
  display: none;
}

#container {
  overflow: hidden; //無滾動條功能
}