Answers for "how to add scroll bar in css"

1

add padding to scrollbar

::-webkit-scrollbar {
    width: 18px;
  }

  ::-webkit-scrollbar-thumb {
    background: red;
    border-right: 13px white solid;
    background-clip: padding-box;
  }
Posted by: Guest on December-17-2020
3

css edit scroll bar

::-webkit-scrollbar{width:6px;border-left:1px solid #E6ECF8;}
::-webkit-scrollbar-thumb{background-color:#d6872c;}
Posted by: Guest on July-10-2020
7

css no overflow

div.ex1 {
  overflow: scroll;
}

div.ex2 {
  overflow: hidden;
}

div.ex3 {
  overflow: auto;
}

div.ex4 {
  overflow: visible;
}
Posted by: Guest on April-02-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language