Posts by Denilson David • 11 points
1 post
-
1
votes8
answers45427
viewsA: How to disable the scroll of a web page?
Can be disabled with pure CSS: body { position: fixed; top: 0; width: 100%; height: 100%; overflow: hidden; }
1 post
1
votes8
answers45427
viewsCan be disabled with pure CSS: body { position: fixed; top: 0; width: 100%; height: 100%; overflow: hidden; }