Thursday 19 January 2017

Hide scrollbar - Do scrollable in CSS - Overflow scroll

Hide scroll bar, but still being able to scroll
------------------------------------------------

#element::-webkit-scrollbar {
   height: 42px;
   overflow: hidden;
 

   display: none;
}

No comments:

Post a Comment