Answers for "html page remove scroll bar"

CSS
1

remove scroll from a page

<style type="text/css">
html, body {
  overflow: hidden;
}
</style>
Posted by: Guest on July-12-2021
-1

how to eliminate scroll bar in html

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

Browse Popular Code Answers by Language