position-sticky-stacking-context-ref.html (320B)
1 <!DOCTYPE html> 2 <title>Reference for position: sticky should create a stacking context</title> 3 4 <style> 5 .indicator { 6 background-color: green; 7 } 8 9 .box { 10 width: 200px; 11 height: 200px; 12 } 13 </style> 14 15 <div>You should see a single green box below. No red or blue should be visible.</div> 16 17 <div class="indicator box"></div>