12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!DOCTYPE html>
- <html lang="en">
-
- <head>
- <meta charset="UTF-8">
- <title>bim</title>
- <style>
- html,
- body {
- width: 100%;
- height: 100%;
- overflow: hidden;
- margin: 0 0 0 0;
- }
-
- .c1 {
- width: 100%;
- height: 100%;
- }
-
- .scrollbar::-webkit-scrollbar {
- width: 2px;
- height: 2px;
- }
-
- .scrollbar::-webkit-scrollbar-thumb {
- border-radius: 0px;
- background: #00FFD5;
- }
-
- .scrollbar::-webkit-scrollbar-track {
- border-radius: 0;
- background: #2B2B2B;
- }
- </style>
- </head>
-
- <body>
- <div class="c1"></div>
-
- </body>
-
- </html>
|