Home > Article > Web Front-end > How to Make Scrollbars Permanently Visible on Mobile Browsers?
When presenting websites with scrollable content, developers often encounter the issue of hidden scrollbars on mobile devices. While scrollbars are readily visible on desktop browsers, they tend to be concealed on mobile browsers until scrolling is initiated. This can lead to usability challenges.
One approach to address this issue is to utilize custom styling with CSS. By applying specific CSS rules, it is possible to make scrollbars consistently visible on mobile browsers.
Consider the following CSS code:
::-webkit-scrollbar { -webkit-appearance: none; } ::-webkit-scrollbar:vertical { width: 12px; } ::-webkit-scrollbar:horizontal { height: 12px; } ::-webkit-scrollbar-thumb { background-color: rgba(0, 0, 0, .5); border-radius: 10px; border: 2px solid #ffffff; } ::-webkit-scrollbar-track { border-radius: 10px; background-color: #ffffff; }
By adding this CSS code to your stylesheet, you can:
Applying this CSS code will make the scrollbars persistently visible on mobile devices, providing a more intuitive user experience.
The above is the detailed content of How to Make Scrollbars Permanently Visible on Mobile Browsers?. For more information, please follow other related articles on the PHP Chinese website!