1. Which property controls the stack order of positioned elements?
`z-index` determines the stack order of positioned elements. Higher z-index values appear in front of lower ones, within the same stacking context.
.box1 { z-index: 2; } .box2 { z-index: 5; }