首页 > 编程语言 >小程序 scroll-view 与 position: fixed 使用的注意事项

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

时间:2022-11-15 09:12:34浏览次数:31  
标签:view 注意事项 position fixed scroll absolute

wxml

<scroll-view>

  <view class="item-wrap">
    //...
  </view>

</scroll-view>

wcss

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

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

标签:view,注意事项,position,fixed,scroll,absolute
From: https://www.cnblogs.com/IT-IOS-MAN/p/16891287.html

相关文章