移动端调出滚动条

#msg10::-webkit-scrollbar-track-piece {
			  background-color: #bfbfbf;
			}
			#msg10::-webkit-scrollbar {
			  width: 0.05rem;
			  height: 13px;
			  -webkit-border-radius: 0.05rem;
			  -moz-border-radius: 0.05rem;
			  border-radius: 0.05rem;
			}
			#msg10::-webkit-scrollbar-thumb {
			  background-color: #c40825;
			  background-clip: padding-box;
			  -webkit-border-radius: 0.05rem;
			  -moz-border-radius: 0.05rem;
			  border-radius: 0.05rem;
			  height: 0.35rem;
			}
			#msg10::-webkit-scrollbar-thumb:hover {
			  background-color: rgba(0, 0, 0, 0.5);
			  -webkit-border-radius: 0.05rem;
			  -moz-border-radius: 0.05rem;
			  border-radius: 0.05rem;
			}

猜你喜欢

转载自blog.csdn.net/Angular_/article/details/79250664