Layout

Z-Index

Utilities for controlling the stack order of an element.

Quick reference

Class Properties
z-0 z-index: 0;
z-10 z-index: 10;
z-20 z-index: 20;
z-30 z-index: 30;
z-40 z-index: 40;
z-50 z-index: 50;
z-auto z-index: auto;

Basic usage

Setting the z-index

Control the stack order (or three-dimensional positioning) of an element in Tailwind, regardless of order it has been displayed, using the z-{index} utilities.

Z-Index - 图1


1. <div class="z-40 ...">05</div>
2. <div class="z-30 ...">04</div>
3. <div class="z-20 ...">03</div>
4. <div class="z-10 ...">02</div>
5. <div class="z-0 ...">01</div>

Using negative values

To use a negative z-index value, prefix the class name with a dash to convert it to a negative value.


1. <div class="-z-50">
2. <!-- ... -->
3. </div>


Applying conditionally

Hover, focus, and other states

Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:z-50 to only apply the z-50 utility on hover.


1. <div class="z-0 hover:z-50">
2. <!-- ... -->
3. </div>

For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.

Breakpoints and media queries

You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:z-50 to apply the z-50 utility at only medium screen sizes and above.


1. <div class="z-0 md:z-50">
2. <!-- ... -->
3. </div>

To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.


Using custom values

Customizing your theme

By default, Tailwind provides six numeric z-index utilities and an auto utility. You can customize these values by editing theme.zIndex or theme.extend.zIndex in your tailwind.config.js file.

tailwind.config.js


1. module.exports = {
2. theme: {
3. extend: {
4. zIndex: {
5. '100': '100',
6. }
7. }
8. }
9. }

Learn more about customizing the default theme in the theme customization documentation.

Arbitrary values

If you need to use a one-off z-index value that doesn’t make sense to include in your theme, use square brackets to generate a property on the fly using any arbitrary value.


1. <div class="z-[100]">
2. <!-- ... -->
3. </div>

Learn more about arbitrary value support in the arbitrary values documentation.