fieldset-columns-003.html (478B)
1 <!DOCTYPE html> 2 <html> 3 <style> 4 fieldset.outer { 5 column-count: 1; 6 transform: rotate(180deg); 7 width: 100px; 8 height: 50px; 9 border: 1px solid blue; 10 } 11 12 div.fixed { 13 position: fixed; 14 background: green; 15 } 16 </style> 17 18 <!-- All the children under the fieldset should be upside down 19 since 'transform' create a stacking context. --> 20 <fieldset class="outer"> 21 <legend>Legend</legend> 22 <div class="fixed">ABC</div> 23 </fieldset> 24 </html>