How To Hide Scrollbar Using Css?

Hide Scrollbar Using Css


//paste this code in your stylesheet
::-webkit-scrollbar{
 width:0px;
 background:transparent;
 opacity:0;
}
::-webkit-scrollbar-thumb{
 width:0px;
 background:transparent;
 opacity:0;
}