Can someone tell me how can I make a customized scroll bar 😭 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can someone tell me how can I make a customized scroll bar 😭

18th Aug 2020, 9:16 AM
Sarah
Sarah - avatar
2 Answers
0
it is very easy <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> /* width */ ::-webkit-scrollbar { width: 10px; } /* Track */ ::-webkit-scrollbar-track { background: #f1f1f1; } /* Handle */ ::-web<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> /* width */ ::-webkit-scrollbar { width: 10px; } /* Track */ ::-webkit-scrollbar-track { background: #f1f1f1; } /* Handle */ ::-webkit-scrollbar-thumb { backgroundkit-scrollbar-thumb { background: #888; } /* Handle on hover */ ::-webkit-scrollbar-thumb:hover { background: #555; } </style> </head>
20th Dec 2020, 11:00 AM
Khumoyun
Khumoyun - avatar
0
this is simple example of how to create custom scrollbar
20th Dec 2020, 11:01 AM
Khumoyun
Khumoyun - avatar