Answers for "remove the scrolling bar html"

CSS
-1

how to eliminate scroll bar in html

html { overflow-y: hidden; }
Posted by: Guest on March-23-2020
-1

how to remove the scroll bar in html

body {
  overflow-y: hidden; /* Hide vertical scrollbar */
  overflow-x: hidden; /* Hide horizontal scrollbar */
}
Posted by: Guest on November-07-2020

Browse Popular Code Answers by Language