1
My html page is with many objects, but I want to let all of them so that the scrollbar doesn’t have to appear, it is possible to disable the scrollbar?
1
My html page is with many objects, but I want to let all of them so that the scrollbar doesn’t have to appear, it is possible to disable the scrollbar?
2
You can use overflow: hidden
to hide the scroll bar(s) (s).
Taking into account that one should change only the necessary in this case you can use only overflow-y
(vertical axis only) to be more specific. Applying this to the document would be
html {
overflow-y: hidden;
}
If you want to use brute force (and in rare cases it is necessary) you can use this applied to all elements like the @William Novak referred to. But to avoid, except rare cases once per life of programmer :)
Browser other questions tagged html css
You are not signed in. Login or sign up in order to post.
You just want the scrollbar to disappear or you want the page to zoom in so it doesn’t need a scrollbar?
– Sergio
Do you have this example in CSS? Where do I put this command?
– Vitor Marques Lourenço
Is this what you want? https://jsfiddle.net/9smm6L8z/
– Sergio
That’s right @Sergio! Thank you all! So q the answer is put I will give as closed!
– Vitor Marques Lourenço
@But sometimes I miss the chance...
– Sergio