Search w3schools.com:

SHARE THIS PAGE

Style zIndex Property

Style Object Reference Style Object

Definition and Usage

The zIndex property sets or returns the stack order of a positioned element.

An element with greater stack order (1) is always in front of another element with lower stack order (0).

Tip: A positioned element is an element with the position property set to: relative, absolute, or fixed.

Syntax

Set the zIndex property:

Object.style.zIndex="auto|number|inherit"

Return the zIndex property:

Object.style.zIndex

Value Description
auto The browser determines the stack order of the element (based on its order in the document). This is default
number An integer that defines the stack order of the element. Negative values are allowed
inherit The value of the zIndex property is inherited from parent element


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The zIndex property is supported in all major browsers.


Tips and Notes

Tip: This property is useful if you want to create overlapping elements.


Example

Example

Change the stack order of an <img> element:

<html>
<head>
<style type="text/css">
#img1
{
position:absolute;
left:0px;
top:0px;
z-index:-1
}
</style>
<script>
function changeStackOrder()
{
document.getElementById("img1").style.zIndex="1";
}
</script>
</head>
<body>

<h1>This is a Heading</h1>

<img id="img1" src="bulbon.gif" width="100" height="180">

<input type="button" onclick="changeStackOrder()" value="Change stack order">

<p>Default z-index is 0. Z-index -1 has lower priority.</p>

</body>
</html>

Try it yourself »


Style Object Reference Style Object

W3Schools Certification

W3Schools' Online Certification

The perfect solution for professionals who need to balance work, family, and career building.

More than 10 000 certificates already issued!

Get Your Certificate »

The HTML Certificate documents your knowledge of HTML.

The HTML5 Certificate documents your knowledge of advanced HTML5.

The CSS Certificate documents your knowledge of advanced CSS.

The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.

The jQuery Certificate documents your knowledge of jQuery.

The XML Certificate documents your knowledge of XML, XML DOM and XSLT.

The ASP Certificate documents your knowledge of ASP, SQL, and ADO.

The PHP Certificate documents your knowledge of PHP and SQL (MySQL).

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]