| <!DOCTYPE html> | |
| <html dir="rtl"> | |
| <head> | |
| <style> | |
| .wide { | |
| width: 2000px; | |
| height: 10px; | |
| background-color: silver; | |
| } | |
| .origin { | |
| position: absolute; | |
| left: 0; | |
| top: 0; | |
| width: 10px; | |
| height: 10px; | |
| background-color: blue; | |
| } | |
| .wheeley { | |
| width: 100px; | |
| height: 100px; | |
| background-color: green; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="origin"></div> | |
| <div class="wide"></div> | |
| <div class="wheeley"> | |
| </div> | |
| </body> | |
| </html> |