20 lines
267 B
HTML
20 lines
267 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
html {
|
|
overflow: hidden;
|
|
}
|
|
body {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
#target {
|
|
width: 100px;
|
|
height: 100px;
|
|
position: absolute;
|
|
transform: translateX(100px);
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<div id="target"></div>
|
|
</html>
|