CSS z-index
Also see the full, alphabetical list of CSS properties
The CSS z-index property is used to layer elements in front or behind each other. This is referred to as the 'stack level'. This only applies to positioned elements (i.e. elements positioned using the position property).
| Syntax: | z-index: <value>; |
| Possible Values: |
|
| Initial Value: | auto |
| Applies to: | Positioned elements |
| Inherited: | No |
| Media: | Visual |
| Example: |
.menu { position: relative; top: 10; left:10; z-index: 3 }
|
| Try it yourself! |
|

