body
绝对定位
<body> <div class="father"> <div class="child"></div> </div> <style> /* 滚动元素 father */ .father { display: fixed; top: 0; overflow-y: scroll; } </style> </body>
body { overscroll-behavior: none; }