scroll-view.css 537 B

12345678910111213141516171819202122232425262728293031
  1. uni-scroll-view {
  2. display: block;
  3. width: 100%;
  4. }
  5. uni-scroll-view[hidden] {
  6. display: none;
  7. }
  8. .uni-scroll-view {
  9. position: relative;
  10. -webkit-overflow-scrolling: touch;
  11. width: 100%;
  12. /* display: flex; 时在安卓下会导致scrollWidth和offsetWidth一样 */
  13. height: 100%;
  14. max-height: inherit;
  15. }
  16. .uni-scroll-view-scrollbar-hidden::-webkit-scrollbar {
  17. display: none;
  18. }
  19. .uni-scroll-view-scrollbar-hidden {
  20. -moz-scrollbars: none;
  21. scrollbar-width: none;
  22. }
  23. .uni-scroll-view-content {
  24. width: 100%;
  25. height: 100%;
  26. }