mui底部按钮问题,使按钮一直在屏幕下端固定不动,中间内容上下滑动

按钮: {
position: 'fixed',
bottom: 0;
}

如果 按钮覆盖了容器的内容,容器加个padding-bottom就行了

容器: {
padding-bottom: 100px;
}

这样的话,按钮会固定在手机屏幕的底部,如果要居中的话要设置

按钮{

margin:auto;

left:0;

right:0;

}

猜你喜欢

转载自www.cnblogs.com/zhouheblog/p/13206016.html