Make scrollbar visible in mobile browsers
-
when I have a web page with a scrollable content. With css property "overflow:auto" or "overflow:visible" the scrollbar is visible on desktop browsers, but when I open the page on mobile browsers the scrollbar appears only when I try to scroll. Is there a way to make the scrollbar always visible on mobile devices? I have tried some JQuery libraries but none of them have worked. The html code is trivial, I have a scrollable div with an IFrame inside: <div id="wrapper"> <iframe id="frameContent" src="mysite" scrollable="yes"></iframe> </div> The css: #wrapper{ overflow: scroll; -webkit-overflow-scrolling: touch; width: 500px; height: 200px; } #frameContent{ width: 100%; height: 100%; }
-
Answer:
Try adding the below to your CSS, note that this is https://bugzilla.mozilla.org/show_bug.cgi?id=77790 https://bugzilla.mozilla.org/show_bug.cgi?id=547260: http://jsfiddle.net/swfour/2nT38/ ::-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; }
user3098549 at Stack Overflow Visit the source
Related Q & A:
- How To Make Free Pc To Mobile Calls In Pakistan?Best solution by Yahoo! Answers
- How to get mobile scrollbar width?Best solution by Stack Overflow
- How do I make my 360 profile visible?Best solution by Yahoo! Answers
- How can I make my website visible in the search engine?Best solution by Yahoo! Answers
- How to make my picture visible on my Yahoo! Answers profile?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.