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