Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

css滚动条样式隐藏设置 #28

Open
yihan12 opened this issue Dec 28, 2023 · 0 comments
Open

css滚动条样式隐藏设置 #28

yihan12 opened this issue Dec 28, 2023 · 0 comments

Comments

@yihan12
Copy link
Owner

yihan12 commented Dec 28, 2023

/* 全局滚动条样式 */
::-webkit-scrollbar {
  width: 0px; /* 纵向滚动条*/
  height: 0px; /* 横向滚动条 */
  background-color: #fff;
}

/*定义滚动条轨道 内阴影*/
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-color: transparent;
}

/*定义滑块 内阴影*/
::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-color: transparent;
  border-radius: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant