Answers for "html css remove scroll bar"

3

how to remove scrollbar in css

::-webkit-scrollbar {
    display: none;
}
Posted by: Guest on August-16-2021
2

css remove scrollbars

overflow-y: hidden; /* Hide vertical scrollbar */
  overflow-x: hidden; /* Hide horizontal scrollbar */
Posted by: Guest on February-24-2021
-1

how to eliminate scroll bar in html

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

Code answers related to "html css remove scroll bar"

Browse Popular Code Answers by Language