标签归档:最大值

CSS中的z-index的最大值

z-index
图片来自:www.annyhe.com/zindex/#3

z-index属性指定了一个元素及其子元素的 z-order。 当元素之间重叠的时候,z-order 决定哪一个元素覆盖在其余元素的上方显示。 通常来说 z-index 较大的元素会覆盖较小的一个。 —MDN z-index

<!– more –>

z-index sample

业务代码中看见了这样一段code,然后想都没有想,直接把另一个元素的z-index值设置为:999999999999999 + 1,就能把它覆盖掉吧,结果并没有那么理想。◻︎_-||

然后就去查找z-index在各个浏览器中的最大值是多少呢,Google了一番找到了下面这个表格,

Browser Max z─index value When exceeded, value changes to:
浏览器 最大值 超过时,值的变化:
Firefox 0-2 2147483647(length:10) element disappears/元素消失
Firefox 3 2147483647(length:10) 0
Firefox 4+ 2147483647(length:10) 2147483647(length:10)
Safari 0-3 16777271(length:8) 16777271(length:8)
Safari 4+ 2147483647(length:10) 2147483647(length:10)
Internet Explorer 6+ 2147483647(length:10) 2147483647(length:10)
Chrome 29+ 2147483647(length:10) 2147483647(length:10)
Opera 9+ 2147483647(length:10) 2147483647(length:10)

举个栗子:

<iframe height=’365′ scrolling=’no’ title=’z-index max value’ src=’//codepen.io/Keystion/embed/mOEBzO/?height=365&theme-id=dark&default-tab=css,result&embed-version=2′ frameborder=’no’ allowtransparency=’true’ allowfullscreen=’true’ style=’width: 100%;’>See the Pen <a href=’http://codepen.io/Keystion/pen/mOEBzO/’>z-index max value</a> by Keystion (<a href=’http://codepen.io/Keystion’>@Keystion</a>) on <a href=’http://codepen.io’>CodePen</a>.
</iframe>

特此而来Mark一下,没有辣么多浏览器,也就测试了下:

  • chrome(版本 54.0.2840.87 (64-bit)
  • Safari(版本 10.0.1 (12602.2.14.0.7)
  • Firefox(49.0.2

参考文献: