I use the .table-responsive class to make my loading tables responsive, and it works fine, but the user has no indicator that the table scrolls horizontally!
How can I make the horizontal scroll bar always be displayed, and not just after the user actually starts scrolling.
Edit
The solution mentioned here almost works: Always show scrollbars on iPhone / Android :
::-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; }
His task displays the scrollbar everywhere, not just the .table-responsive class. How can I limit this?
css twitter-bootstrap twitter-bootstrap-3
Adam silver
source share