css-tricky-problem

inline-block with font-size 0

margin-top: -10 with position absolute

ios
.aa( style="position: fixed; z-index: 90;" )
div( style="overflow: scroll" )
  .bb( style="position: fixed; z-index: 95;" )

.bb 會遮不著 .aa => 要把 overflow: hidden

ios 12.1
用 -website-transform: translated3d(0,0,0) 處理閃屏問題,會造成內頁 fixed 變成 absolute 效果
解法用 => -website-transform: translated2d(0,0)
  • html
    overflow: auto
    // 手機拖順
    -webkit-overflow-scrolling: touch
    // 閃屏問題
    -webkit-transform: translate3d(0,0,0)


.bb 會遮不著 .aa => 要把 overflow: hidden

留言