其他CSS属性与层叠上下文
- z-index 值不为auto的flex项(父元素display:flex|inline-flex)
在.box > div 上设置的z-index 并不生效,因为它不是定位元素,
加了display:flex之后,就生效了
- 元素的opacity值不是1
- transform != none
- mix-blend-mode 不是normal
- filter != none
- isolation != isolate
- position = fixed
- will-change 指定的属性为上面任意一个
- 元素的-webkit-overflow-scrolling = touch
移动端特有