Answers for "hide scrollbar react"

CSS
1

react hide scrollbar

*{
  -ms-overflow-style: none;
}
::-webkit-scrollbar {
  display: none;
}
Posted by: Guest on January-16-2021
-1

javascript hide scrollbar

function HideScrollbar() {
  var style = document.createElement("style");
  style.innerHTML = `body::-webkit-scrollbar {display: none;}`;
  document.head.appendChild(style);
}
Posted by: Guest on June-22-2020

Code answers related to "hide scrollbar react"

Browse Popular Code Answers by Language