自定义浏览器滚动条

<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
* {
padding: 0px;
margin: 0px;
}
body{
height: 1000px;
background: red;
}
::-webkit-scrollbar {
width: 6px;
height: 6px
}

::-webkit-scrollbar-thumb {
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
background-color: #666;
}

::-webkit-scrollbar-track {
background-color: #eee;
}
</style>
</head>

<body>
</body>

</html>

  

posted @ 2016-09-15 12:27  最骚的就是你  阅读(168)  评论(0编辑  收藏  举报