浏览器 | 最大值 | 超过最大值后变成 | 最小值 | 小于最小值后变成 | 备注 |
IE6 | 2147483647 | 2147483647 | -2147483648 | -2147483648 | |
IE7 | 2147483647 | 2147483647 | -2147483648 | -2147483648 | |
IE8 | 2147483647 | 2147483647 | -2147483648 | -2147483648 | |
IE9 | 2147483647 | 2147483647 | -2147483648 | -2147483648 | |
IE10 | 2147483647 | 2147483647 | -2147483648 | -2147483648 | |
IE11 | 2147483647 | 2147483647 | -2147483648 | -2147483648 | |
Firefox 2 | 2147483647 | 元素消失 | ? | ? | |
Firefox 3 | 2147483647 | 0 | ? | ? | |
Firefox 29(最新稳定版) | 2147483647 | 2147483647 | -2147483648 | -2147483648 | |
Safari 3 | 16777271 | 16777271 | ? | ? | |
Safari 4 | 2147483647 | 2147483647 | ? | ? | |
Safari 5.1.7(最新稳定版) | 2147483647 | 数值不变 | -2147483648 | 数值不变 | 使用的是webkit内核,所以和chrome一致 |
Chrome 29 | 2147483647 | 2147483647 | -2147483648 | 数值不变 | |
Chrome 35(最新稳定版) | 2147483647 | 数值不变 | -2147483648 | 数值不变 | chrome允许设置超过最大值、最小值的z-index, 不过超出之后层叠样式会使用最大值和 最小值来计算(比如设置为2147483648时, 会以2147483647计算层叠关系) |
Opera 9 | 2147483647 | 2147483647 | ? | ? | |
Opera 21(最新稳定版) | 2147483647 | 数值不变 | -2147483648 | 数值不变 | 使用的是webkit内核,所以和chrome一致 |
结论:z-index的取值范围为-2147483648 ~~ 2147483647。而C的Int型数据类型的大小也为-2147483648 ~~ 2147483647。说明CSS的z-index在C中是作为INT型计算的。一般z-index都不超过100000,所以基本上不用考虑大小问题。PS:chrome中对于width和height的最大限制为33554428,这个有时间再做吧。参考文章:http://stackoverflow.com/questions/8565821/css-max-z-index-valuehttp://www.puidokas.com/max-z-index/http://stackoverflow.com/questions/491052/mininum-and-maximum-value-of-z-index#answer-491105http://www.quora.com/Cascading-Style-Sheets/Is-there-a-maximum-value-for-z-index

使用math.Max函数获取一组数中的最大值在数学和编程中,经常需要找出一组数中的最大值。在Go语言中,我们可以使用math包中的Max函数来实现这个功能。本文将介绍如何使用math.Max函数来获取一组数中的最大值,并提供相应的代码示例。首先,我们需要导入math包。在Go语言中,导入包可以使用import关键字,如下所示:import"mat

使用jQuery移除z-index属性是一个非常简单的操作,下面将通过具体代码示例来演示如何实现这一操作。首先,我们需要在HTML中引入jQuery库,可以使用以下CDN链接:&

使用Python的max()函数获取序列或集合中的最大值在Python编程中,我们经常需要从序列或集合中找到最大的元素。Python提供了一个内置函数max(),它可以非常方便地实现这个功能。max()函数可以接受任何可迭代对象作为参数,包括列表、元组、集合等。它会返回传入对象中的最大元素。下面是max()函数的基本语法:max(iterable[,def

如何在PHP数组中获取最大值在编写PHP代码时,经常需要对数组进行各种操作,其中包括获取数组中的最大值。在本文中,我们将介绍如何使用PHP的内置函数和自定义函数来获取数组中的最大值,并提供相应的代码示例。使用PHP内置函数max()PHP提供了一个内置函数max(),可以方便地从数组中获取最大值。下面是使用该函数的代码示例:<?php$numbers

讨论一个给定二进制数的问题。我们必须从中删除一点,以便剩余的数字应该是所有其他选项中的最大值,例如Input:N=1011Output:111Explanation:Weneedtoremoveonebitsoremoving0bitwillgiveamaximumnumberthanremovingany1’sbit.111>101,011.Input:111Output:11Explanation:Sinceallthebitsare1sowecanremovean

TreeSet是JavaCollectionFramework中的一个类,它实现了SortedSet接口。它按升序存储元素,并且不允许重复值,因此访问和检索时间变得更快。由于这个出色的功能,TreeSet经常用于存储需要快速搜索的大量信息。我们将使用Comparable接口对给定的TreeSet进行排序,然后使用内置方法,尝试获取最高和最低值的元素来自该TreeSet。从TreeSet获取最高和最低值元素的Java程序在进入程序之前,让我们先熟悉一些概念类似的界面当我们想要按自定义对象的自然顺序

CSS层叠属性解读:z-index和position在CSS中,布局和样式的设计是非常重要的。而在设计中,经常需要对元素进行层叠和定位。两个重要的CSS属性,即z-index和position,可以帮助我们实现这些需求。本文将深入探讨这两个属性并提供具体的代码示例。一、z-index属性z-index属性用于定义元素在垂直方向上的堆叠顺序。元素的层叠

在本文中,我们将使用C++解决寻找最大值和最小值相同的子数组数量的问题。以下是该问题的示例−Input:array={2,3,6,6,2,4,4,4}Output:12Explanation:{2},{3},{6},{6},{2},{4},{4},{4},{6,6},{4,4},{4,4}and{4,4,4}arethesubarrayswhichcanbeformedwithmaximumandminimumelementsame.Input:array={3,3,1,5,


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version
SublimeText3 Linux latest version

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
