blob: 4a3e84eeaaf21d9b7110c3c5e2d1d3d9f29c3b2b [file] [log] [blame] [edit]
<!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>