-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path7_posisi.html
53 lines (47 loc) · 1.06 KB
/
7_posisi.html
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
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Test CSS</title>
<link rel="stylesheet"
type="text/css"
href="7_posisi.css">
</head>
<body>
<h1>
Test positioning
</h1>
<div class="boxA">
Box 1A
<div class="boxB">
Box 1B
</div>
</div>
<p>Relative Position</p>
<small>Relative terhadap parent tag</small>
<div class="boxA">
Box 2A
<div class="boxB" id="box2b">
Box 2B
</div>
</div>
<p>Absolute Position</p>
<small>Absolute terhadap body tag</small>
<div class="boxA">
Box 3A
<div class="boxB" id="box3b">
Box 3B
</div>
</div>
<p>Fixed Position</p>
<!-- <small>Absolute terhadap body tag</small> -->
<div class="boxA">
Box 4A
<div class="boxB" id="box4b">
Box 4B
</div>
</div>
</body>
</html>