Home >Web Front-end >CSS Tutorial >Why are CSS Scrollbars Missing on iOS Devices?
Unable to Display Scrollbars with CSS Overflow on iOS
When developing a website for the iPad, using the CSS property overflow: auto to enable scrollbars within a div may prove ineffective. Despite the two-finger scroll gesture functioning correctly, the scrollbars remain hidden. Attempts to use both overflow: auto and overflow: scroll yield no results.
iOS Behavior
Unfortunately, neither overflow: auto nor scroll produces scrollbars on iOS devices. This is reportedly due to the screen space that would be occupied by these controls.
Alternative Solutions
To compensate for the lack of scrollbars on iOS:**
The above is the detailed content of Why are CSS Scrollbars Missing on iOS Devices?. For more information, please follow other related articles on the PHP Chinese website!