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