mescroll-uni.css 530 B

1234567891011121314151617181920212223242526272829
  1. page {
  2. height: 100%;
  3. box-sizing: border-box; /* 避免设置padding出现双滚动条的问题 */
  4. }
  5. .mescroll-uni-warp{
  6. height: 100%;
  7. }
  8. .mescroll-uni {
  9. position: relative;
  10. width: 100%;
  11. height: 100%;
  12. min-height: 200rpx;
  13. overflow-y: auto;
  14. box-sizing: border-box; /* 避免设置padding出现双滚动条的问题 */
  15. }
  16. /* 定位的方式固定高度 */
  17. .mescroll-uni-fixed{
  18. z-index: 1;
  19. position: fixed;
  20. top: 0;
  21. left: 0;
  22. right: 0;
  23. bottom: 0;
  24. width: auto; /* 使right生效 */
  25. height: auto; /* 使bottom生效 */
  26. }