1381821.html (446B)
1 <!DOCTYPE html> 2 <style> 3 div { color: green; } 4 .red > span { color: red; } 5 </style> 6 <div id="first"><span></span></div> 7 <div id="second"><span>This text should be green.</span></div> 8 <script> 9 getComputedStyle(second.firstChild).color; 10 getComputedStyle(first.firstChild).color; 11 second.className = "red"; 12 getComputedStyle(second.firstChild).color; 13 first.className = "red"; 14 second.className = ""; 15 getComputedStyle(second.firstChild).color; 16 </script>