CSS Position with Z index

  • Post category:CSS

Get the code of CSS Position with Z index and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<div class="container">
	<div class="box">
    
  </div>
</div>
.container {
  position: relative;
  background: lightblue;
  height: 100px;
}
.box {
  position: absolute;
  z-index: 1;
  bottom: -30px;
  left: 50px;
  width: 50px;
  height: 50px;
  background: green;
}