436194-1.html (465B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style type="text/css"> 5 6 #colset { column-count: 2; outline: 1px solid orange; } 7 .ib { height: 100px; display: inline-block; outline: 1px solid blue; } 8 div { outline: 1px solid green; } 9 span { outline: 1px solid magenta; } 10 11 </style> 12 </head> 13 <body> 14 15 <div id="colset"><div></div><div style="width: 10px; float: left;"><span> <span class="ib" style="width: 30px;"></span> <br> </span></div><span class="ib"></span></div> 16 17 </body> 18 </html>