1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<!DOCTYPE html> <html> <head> <style> body { margin: 0; } div { left: 200px; top: 200px; position:absolute; } </style> </head> <body> <div style="width: 200px; height: 200px; background-color: blue;"></div> <div style="width: 100px; height: 100px; background-color: red;"></div> </body> </html>