fieldset-columns-002.html (535B)
1 <!DOCTYPE HTML> 2 <html> 3 <style> 4 div { 5 position: absolute; 6 width: 10px; 7 height: 10px; 8 top: 0; 9 background: blue; 10 } 11 fieldset { 12 width: 300px; 13 height: 200px; 14 border: 1px solid; 15 position: relative; 16 overflow: hidden; 17 } 18 </style> 19 <fieldset style="columns: 1;"> 20 <!-- The position of <div>s should remain the same regardless of 21 the multicol style on fieldset. --> 22 <legend>Legend<div style="left: 0px;"></div></legend> 23 <div style="left: 10px;"></div> 24 </fieldset> 25 </html>