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

System Design

1. Scalability Scalability refers to a system’s ability to handle increasing workloads, users, or data without affecting performance.. A sca...