小编典典

为什么用position:static忽略z-index?

css

// Ignore z-index if position is set to a value where z-index is ignored by the browser
// This makes behavior of this function consistent across browsers
// WebKit always returns auto if the element is positioned

我看到jquery zIndex()如果元素是,则返回0 position: static

位置:静态不支持z-index吗?(它在Chrome中对我有效,尚未测试跨浏览器)


阅读 534

收藏
2020-05-16

共1个答案

小编典典

由于position: static手段“忽略所有的定位指令lefttopz-index,等”。

'z-index'
Value:      auto | <integer> | inherit
Initial:    auto
Applies to:     positioned elements

如果元素的“位置”属性具有“静态”以外的值,则称该元素已定位。

2020-05-16