小程序 scroll-view 与 position: fixed 使用的注意事项

wxml



  
    //...
  


wcss

.item-wrap {
  position: fixed; // /* 转化为 position: absolute */
} 

注:在 scroll-view 子组件使用 position: fixed 不会生效。scroll-view 会将 position: fixed 转化为 position: absolute

你可能感兴趣的:(小程序 scroll-view 与 position: fixed 使用的注意事项)