You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

54 lines
1001 B

page {
background-color: #F1F1F1;
height: 100%;
font-size: 28rpx;
line-height: 1.2; //
color: #000;
// color: darkred;
}
page .tabpage {
// 怪异盒模型
-webkit-overflow-scrolling: touch;
box-sizing: border-box;
/* #ifdef H5 */
//貌似不需要了,已经是去除了tabbar的高度了
//自定义tabbar的时候需要
// 底部tab栏高度
margin-bottom: 0; //var(--window-bottom);
/* #endif */
/* #ifndef H5 */
margin-bottom: 0;
/* #endif */
// 触发BFC
// overflow-x: hidden;
// overflow-y: scroll;
min-height: 100%;
}
page .page {
// 怪异盒模型
-webkit-overflow-scrolling: touch;
box-sizing: border-box;
// 触发BFC
// overflow-x: hidden;
// overflow-y: scroll;
min-height: 100%;
}
::-webkit-scrollbar {
width: 0;
height: 0;
color: transparent;
display: none;
}
page * {
box-sizing: border-box;
}
::-webkit-scrollbar {
width: 0;
height: 0;
color: transparent;
display: none;
}