blob: 3d011aa6d8912122ca6944166ea5e5895dc18af1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head>
<style>
div {
position: absolute;
padding: 2px;
left: 100px;
top: 700px;
width: 100px;
height: 100px;
background: yellow;
-moz-transform: translate(0, -400px);
transform: translate(0, -400px);
}
</style>
</head>
<body>
<div>Hello</div>
</body>
</html>
|