-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathposition.html
More file actions
43 lines (31 loc) · 786 Bytes
/
position.html
File metadata and controls
43 lines (31 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Postion Proerty</title>
<style>
h2{
position: absolute;
left: 100px;
top: 200px;
}
.lft{
position: relative;
left: 12px;
}
.rght{
position: relative;
right: 2px;
}
</style>
</head>
<body>
<h1>Learning Postion Property</h1>
<h2>This is an heading data written</h2>
<p>Relative Tag Example</p>
<h3 class="lft">We are moving in left</h3>
<h3 class="rght">We are moving in right</h3>
</body>
</html>