1. Add attributes to html tag
XML/HTML CodeCopy content to clipboard
<html lang="en" class="no- ie" style="overflow:hidden;">
2.Add the following code to the body
XML/HTML CodeCopy the content to the clipboard
<style type="text/css"> html{ overflow-x: hidden; overflow-y: hidden; } </style>
How to remove scroll bars from html pages
In order to prevent the previous css file from overwriting the body's style
Write a css directly in the html
XML/HTML Code Copy the content to the clipboard
<span style="font-size:24px;"><style type="text/css"> body{ overflow-x: hidden; overflow-y: hidden; } </style></span>