394237-1.html (580B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <style> 4 5 body { 6 height: 50px; 7 column-count: 2; 8 } 9 .container { 10 height: 10px; 11 } 12 .overflow { 13 height: 100px; 14 } 15 .bb { 16 border-bottom: solid 4px magenta; 17 } 18 19 </style> 20 21 <script> 22 23 function boom() 24 { 25 document.getElementById("x").setAttribute("class", ""); 26 document.getElementById("y").setAttribute("class", "bb"); 27 } 28 29 </script> 30 </head> 31 32 <body onload="boom();"> 33 <div class="container"><div class="overflow" id="x"></div></div> 34 <div id="y"></div> 35 <div class="container"><div class="overflow"></div></div> 36 </body> 37 38 </html>