美化chrome滚动条(类似iphone效果) PHP

打开chrome目录下的

C:\Documents and Settings\Administrator\Local Settings\Application Data\Google\Chrome\User Data\Default\User StyleSheets\Custom.css

文件,添加如下样式:

::-webkit-scrollbar {
  -webkit-appearance: none;
  10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  border: 2px solid white;
  background-color: rgba(0, 0, 0, .3);
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, .8);
}
::-webkit-scrollbar-thumb:window-inactive {
  background-color: rgba(0, 0, 0, .2);
}

 

原文地址:https://www.cnblogs.com/zjfree/p/3019994.html