<html> | |
<head> | |
<style> | |
body { | |
margin: 0; | |
overflow: hidden; | |
} | |
.wide { | |
width: 2000px; | |
height: 10px; | |
background-color: silver; | |
} | |
.origin { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100px; | |
height: 100px; | |
background-color: green; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="wide"></div> | |
<div class="origin"></div> | |
</body> | |
</html> |