1533968.html (392B)
1 <html> 2 <head> 3 <style> 4 #th { 5 width: 100px; 6 height: 100px; 7 transition-duration: 1s; 8 } 9 </style> 10 <script> 11 function start () { 12 var div = document.getElementById('th'); 13 div.style.backgroundColor = 'green'; 14 } 15 </script> 16 </head> 17 <body onload="start()"> 18 <table> 19 <tr style="background-color: blue;"><th id="th"></th></tr> 20 </table> 21 </body> 22 </html>