Answers for "overflow-y scroll css"

CSS
1

overflow-y scroll css

::-webkit-scrollbar {
  height: 12px;
  width: 12px;
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #f27f3d;
  -webkit-border-radius: 1ex;
}

::-webkit-scrollbar-corner {
  background: #000;
}
Posted by: Guest on April-29-2022
0

css overflow-y

#elem_tag{height:400px;overflow-y:auto} /*Give it a height and overflow*/
Posted by: Guest on April-21-2022

Browse Popular Code Answers by Language