IntScription()

Devlog - 2025-10-08

πŸš€ What I Did

🧠 What I Learned

z-index

.box1 {
  position: absolute;
  z-index: 1;
  background: lightcoral;
  top: 20px;
  left: 20px;
  width: 100px;
  height: 100px;
}

.box2 {
  position: absolute;
  z-index: 3;
  background: gold;
  top: 40px;
  left: 40px;
  width: 100px;
  height: 100px;
}

πŸ”₯ What’s Next


← Previous Next β†’