uniapp position: fixed 兼容性不显示问题
position: fixed;
bottom: 0;
以上运行到微信小程序时正常,但是h5会出现不显示的问题。
解决方法
修改为:
position: fixed;
bottom: var(--window-bottom, 0);
position: fixed;
bottom: 0;
以上运行到微信小程序时正常,但是h5会出现不显示的问题。
解决方法
修改为:
position: fixed;
bottom: var(--window-bottom, 0);