You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<meta content="Besides 'auto' and 'inherit' keyword values, z-index property can only accept an integer value. An integer consists of one or more digits '0' to '9'." name="assert" />
<style type="text/css"><![CDATA[
div
{
height: 100px;
position: absolute;
width: 100px;
}
#invalid-zindex
{
background-color: red;
z-index: 100%;
}
#valid-zindex
{
background-color: green;
z-index: auto;
}
]]></style>
</head>
<body>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>