App page compatibility issues

1. The compatibility of the page on Xiaomi 5 is extremely poor: it can slide down or left and appear blank, and the online sliding content covers the fixed head.
2. There is no header problem on 5s.
3.
clipboard.png

4. It works well to set html,body and all the direct child elements of body to width:100%. The key is why there is no problem with the head. Ask God to help solve it.

Mar.14,2021

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  overflow: hidden;
  overflow-y: auto;
}

it is possible that your list has margin-right , and if so, remove

.
Menu