移动端在使用overflow-x:hidden属性时,如果直接加在body上无效,需将内容包裹在另一个div标签中,并且使用 overflow-x:hidden;postion:relative,两个属性,如:1
2
3
4
5
6<div style="overflow-x:hidden;position:relative">
<section style="width:100%;height:100%">
</seciton>
<section style="tanslateX-100">
</seciton>
</div>
1 | <style> |