该页面使用了滚动overflow: auto;至使安卓手机input标签错位
解决方案在 滚动css中加入height: calc(100vh - 1px);
.patrol-content {
width: 100%;
/* height: 100%; */
position: fixed;
bottom: 0;
overflow: auto;
background: #F0F3F9;
height: calc(100vh - 1px);
}
该页面使用了滚动overflow: auto;至使安卓手机input标签错位
解决方案在 滚动css中加入height: calc(100vh - 1px);
.patrol-content {
width: 100%;
/* height: 100%; */
position: fixed;
bottom: 0;
overflow: auto;
background: #F0F3F9;
height: calc(100vh - 1px);
}