Everything is fine without the scroll bar | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Everything is fine without the scroll bar

How I can get rid of those scroll bars

5th Aug 2018, 5:17 AM
Nayem
3 Answers
+ 3
Here is the CSS using which you can modify the scroll bar or even get rid of. Here is what I did to get rid of scroll bars: CSS: ::-webkit-scrollbar { width: 0px; } ::-webkit-scrollbar-track { box-shadow: inset 0 0 1px transparent; border-radius: 20%; } ::-webkit-scrollbar-thumb { background: transparent; border-radius: 20%; } ::-webkit-scrollbar-thumb:hover { background: transparent; }
5th Aug 2018, 5:45 AM
Шащи Ранжан
Шащи Ранжан - avatar
+ 3
add overflow:hidden will do
5th Aug 2018, 5:59 AM
Calviղ
Calviղ - avatar
+ 1
Set .nav{ position: absolute; right: 0; }
5th Aug 2018, 8:31 AM
Calviղ
Calviղ - avatar