child-in-animating-element-display-none-ref.html (222B)
1 <!DOCTYPE html> 2 <html> 3 <style> 4 div { 5 width: 100px; 6 height: 100px; 7 background-color: blue; 8 } 9 #child { 10 background-color: green; 11 width: 50px; 12 height: 50px; 13 } 14 </style> 15 <div> 16 <div id="child"></div> 17 </div> 18 </html>