fieldset-columns-004-ref.html (491B)
1 <!DOCTYPE html> 2 <html> 3 <style> 4 fieldset.outer { 5 column-count: 1; 6 margin-left: 3px; 7 position: relative; 8 width: 100px; 9 height: 50px; 10 border: 1px solid blue; 11 } 12 13 div.fixed { 14 position: absolute; 15 top: 0; 16 left: 0; 17 background: green; 18 } 19 </style> 20 21 <!-- ABC should be inside the fieldset since 'transform' creates a stacking context. --> 22 <fieldset class="outer"> 23 <legend>Legend</legend> 24 <div class="fixed">ABC</div> 25 </fieldset> 26 </html>