Remove overflow-y from html element
See original GitHub issueSteps to reproduce
Use Vuetify.
Versions
Latest of everything.
What is expected ?
html
element to have no overflow-y
set or overflow-y: auto
What is actually happening ?
html
element has overflow-y: scroll
, which forces a scrollbar to always be present.
Reproduction Link
Issue Analytics
- State:
- Created 6 years ago
- Reactions:9
- Comments:13 (4 by maintainers)
Top Results From Across the Web
How to remove overflow: auto property? - css
The Answer is very simple set empty value to the overflow property that is enough. <div ...
Read more >How To Hide Scrollbars With CSS - W3Schools
Add overflow: hidden; to hide both the horizontal and vertical scrollbar. Example. body { overflow: hidden; /* Hide scrollbars */ }.
Read more >Overflowing content - Learn web development | MDN
This lesson introduced the concept of overflow. You should understand that default CSS avoids making overflowing content invisible.
Read more >How to Unset CSS Overflow Using JavaScript when Sticky ...
Open your dev tools and type in overflow in the search filter for the CSS panel. Finding the overflow property using the browser...
Read more >overflow - CSS-Tricks
The opposite of the default visible is hidden. This literally hides any content that extends beyond the box. This is particularly useful in...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi, maybe we should include an example of how best to disable the scrollbar, for those who need it, as part of the FAQ.
Presently, the FAQ Question:
has as this Answer:
The present answer does help those looking for HOW to disable the scrollbar
After speaking with the backers and devs, the consensus is to leave it as it is and allow the user to change it.