208305-1.html (355B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <style type="text/css"> 5 .cell {display:table-cell} 6 </style> 7 <script type="text/javascript"> 8 function doTest() { 9 ss = document.styleSheets[0]; 10 ss.cssRules[0].style.display="block"; 11 } 12 </script> 13 </head> 14 15 <body onload="doTest()"> 16 <div class="cell">foo</div><div class="cell">bar</div><div class="cell">baz</div> 17 </body> 18 19 </html>