404146-1.html (429B)
1 <html> 2 <head> 3 <style> 4 5 .colset { 6 column-count: 2; 7 column-width: 50px; 8 float: left; 9 border: 2px solid black; 10 height: 10em; 11 font: 12px monospace; 12 } 13 14 #t { 15 display: inline-block; 16 background: lightgreen; 17 height: 7em; 18 width: 29px; 19 } 20 21 </style> 22 </head> 23 24 <body onload="document.getElementById('t').style.width = '30px';"> 25 26 <div class="colset">The quick <span><div id="t"></div>brown</span></div> 27 28 </body></html>