1234567891011121314151617181920212223242526272829 |
- page {
- height: 100%;
- box-sizing: border-box;
- }
- .mescroll-uni-warp{
- height: 100%;
- }
- .mescroll-uni {
- position: relative;
- width: 100%;
- height: 100%;
- min-height: 200rpx;
- overflow-y: auto;
- box-sizing: border-box;
- }
- .mescroll-uni-fixed{
- z-index: 1;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- width: auto;
- height: auto;
- }
|