Can CSS be used to hide the scroll-bar? How would you do this?
相关问题
- Adding a timeout to a render function in ReactJS
-
Why does the box-shadow property not apply to a
- Add animation to jQuery function Interval
- jQuery hover to slide?
- Issue with star rating css
My answer will scroll even when
overflow:hidden;
using jqueryfor example scroll horizontally with mouse wheel:
Yes, sort of..
When you ask the question, "Can the scroll-bars of a browser be removed in some way, rather than simply hidden or camouflaged", everyone will say "Not possible" because it is not possible to remove the scrollbars from all browsers in a compliant and cross-compatible way, and then there's the whole argument of usability.
However, it is possible to prevent the browser from ever having the need to generate and display scrollbars if you do not allow your webpage to overflow.
This just means that we have to proactively substitute the same behavior that the browser would typically do for us and tell the browser thanks but no thanks buddy. Rather than try to remove scrollbars (which we all know is not possible) we can avoid scrolling (perfectly feasible) and scroll within the elements that we make and have more control over.
Create a div with overflow hidden. Detect when the user attempts to scroll but is unable to because we've disabled the browsers ability to scroll with overflow: hidden.. and instead move the content up using Javascript when this occurs. Thereby creating our own scrolling without the browsers default scrolling or use a plugin like iScroll
---
For the sake of being thorough; all the vendor specific ways of manipulating scroll-bars:
Internet Explorer 5.5+
*These properties were never part of the CSS spec, nor were they ever approved or vendor prefixed but they work in Internet Explorer and Konqueror. These can also be set locally in the user style sheet for each application. In IE you find it under the "Accessibility" tab, in Konqueror under the "Stylesheets" tab.
As of IE8 these properties were vendor prefixed by Microsoft but were still never approved by W3C.
Further details about Internet Explorer
IE makes
scroll
available which sets whether or not to disable or enable scroll bars; it can also be used to get the value of the position of the scroll bars.With Microsoft Internet Explorer 6 and later, when you use the !DOCTYPE declaration to specify standards-compliant mode, this attribute applies to the HTML element. When standards-compliant mode is not specified, as with earlier versions of IE, this attribute applies to the
BODY
element, NOT theHTML
element.It's also worth noting that when working with .NET the ScrollBar class in
System.Windows.Controls.Primitives
in the Presentation framework is responsible for rendering the scrollbars.http://msdn.microsoft.com/en-us/library/ie/ms534393(v=vs.85).aspx
Webkit
Webkit extensions related to scroll-bar customization are:
These can each be combined with additional pseudo-selectors:
:horizontal
– The horizontal pseudo-class applies to any scrollbar pieces that have a horizontal orientation.:vertical
– The vertical pseudo-class applies to any scrollbar pieces that have a vertical orientation.:decrement
– The decrement pseudo-class applies to buttons and track pieces. It indicates whether or not the button or track piece will decrement the view’s position when used (e.g., up on a vertical scrollbar, left on a horizontal scrollbar).:increment
– The increment pseudo-class applies to buttons and track pieces. It indicates whether or not a button or track piece will increment the view’s position when used (e.g., down on a vertical scrollbar, right on a horizontal scrollbar).:start
– The start pseudo-class applies to buttons and track pieces. It indicates whether the object is placed before the thumb.:end
– The end pseudo-class applies to buttons and track pieces. It indicates whether the object is placed after the thumb.:double-button
– The double-button pseudo-class applies to buttons and track pieces. It is used to detect whether a button is part of a pair of buttons that are together at the same end of a scrollbar. For track pieces it indicates whether the track piece abuts a pair of buttons.:single-button
– The single-button pseudo-class applies to buttons and track pieces. It is used to detect whether a button is by itself at the end of a scrollbar. For track pieces it indicates whether the track piece abuts a singleton button.:no-button
– Applies to track pieces and indicates whether or not the track piece runs to the edge of the scrollbar, i.e., there is no button at that end of the track.:corner-present
– Applies to all scrollbar pieces and indicates whether or not a scrollbar corner is present.:window-inactive
– Applies to all scrollbar pieces and indicates whether or not the window containing the scrollbar is currently active. (In recent nightlies, this pseudo-class now applies to ::selection as well. We plan to extend it to work with any content and to propose it as a new standard pseudo-class.)Examples of these combinations
Further details about Chrome
Mozilla
Mozilla does have some extensions for manipulating the scroll-bars but they are all recommended not to be used.
-moz-scrollbars-none
They recommend using overflow:hidden in place of this.-moz-scrollbars-horizontal
Similar to overflow-x-moz-scrollbars-vertical
Similar to overflow-y-moz-hidden-unscrollable
Only works internally within a users profile settings. Disables scrolling XML root elements and disables using arrow keys and mouse wheel to scroll web pages.Mozilla Developer Docs on 'Overflow'
Further details about Mozilla
This is not really useful as far as I know, but it's worth noting that the attribute which controls whether or not scrollbars are displayed in Firefox is: (reference link)
Last but not least, padding is like magic.
As has been previously mentioned in some other answers, here is an illustration which is sufficiently self-explanatory.
History lesson
Just because I'm curious, I wanted to learn about the origin of scrollbars and these are the best references I found.
Miscellaneous
In an HTML5 specification draft, the
seamless
attribute was defined to prevent scroll-bars from appearing in iFrames so that they could be blended with surrounding content on a page. Though this element does not appear in the latest revision.The
scrollbar
BarProp object is a child of thewindow
object and represents the user interface element that contains a scrolling mechanism, or some similar interface concept.window.scrollbars.visible
will returntrue
if the scroll bars are visible.The History API also includes features for scroll restoration on page navigation to persist the scroll position on page load.
window.history.scrollRestoration
can be used to check the status of scrollrestoration or change it's status (appending="auto"/"manual"
. Auto is the default value. Changing it to manual means that you as the developer will take ownership of any scroll changes that may be required when a user traverses the app's history. If you need to, you can keep track of the scroll position as you push history entries with history.pushState().---
Further reading:
Examples
Set
overflow: hidden;
on the body tag like this:The code above hides both horizontal and vertical scrollbar.
If you want to hide only the vertical scrollbar, use
overflow-y
:And if you want to hide only the horizontal scrollbar, use
overflow-x
:update: I meant hidden, sorry, just woke up :-)
Note: It'll also disable the scrolling feature. Refer below answers if you just want to hide scrollbar but not scroll feature.
I think i found a work around for you guys if you're still interested. This is my first week but it worked for me..
If you want scrolling to work, before hiding scrollbars, consider styling them. Modern versions of OS X and mobile OS's have scrollbars that, while impractical for grabbing with a mouse, are quite beautiful and neutral.
To hide scrollbars, a technique by John Kurlak works well except for leaving Firefox users who don't have touchpads with no way to scroll unless they have a mouse with a wheel, which they probably do, but even then they can usually only scroll vertically.
John's technique uses three elements:
It must be possible to set the size of the outer and content elements the same which eliminates using percentages, but I can't think of anything else that won't work with the right tweaking.
My biggest concern is whether all versions of browsers set scrollbars to make visible overflowed content visible. I have tested in current browsers, but not older ones.
Pardon my SASS ;P
Testing
OS X is 10.6.8. Windows is Windows 7.
my html is like this
add this to your div where you want to hide the scrollbar
and add this to the container