ios 中position:fixed定位问题

在ios中使用fixed定位,当页面超出一屏时会出现fixed定位随着页面滚动而滚动,解决方法,

//父容器
//内容区
//定位区
.main{ width:750px; height:100vh; position:relative; } .maincon{ width:750px; height:100%; overflow-y:scroll; -webkit-overflow-scrolling:touch; ::-webkit-scrollbar { display: none; } .fixedflag{ position:absolute; right:0; bottom:30px; } }

你可能感兴趣的:(ios 中position:fixed定位问题)