+ 13
Disable scroll and zoom
I would like to disable scroll and zoom on my code: https://code.sololearn.com/Wn439b68yO9R/?ref=app Please help me
4 Answers
+ 8
<!--to disable zoom you need to add another metadata-->
<meta name="veiwport" content="user-scalable=no"></meta>
+ 5
Proloy Mishra [đexams] it doesnât work and I still need a solution for disabling scroll
+ 5
it works for me and it doesn't work for youđ€
i don't know how to disable scrollđ
+ 3
To disable scroll:
Css
body {
overflow:hidden;
}