您的当前位置:首页>全部文章>文章详情

css隐藏滚动条但可以滚动,兼容各大浏览器

发表于:2023-01-16 11:28:55浏览:235次TAG: #css #html
/* 隐藏滚动条 */
.my-div {
  height: 130px;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.my-div::-webkit-scrollbar {
  display: none; /* Chrome Safari */
}