-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquickMargin.html
More file actions
58 lines (47 loc) · 1.18 KB
/
quickMargin.html
File metadata and controls
58 lines (47 loc) · 1.18 KB
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
54
55
56
57
58
<html>
<head>
</head>
<body>
<style>
.parent {
height: 800px;
width: 600px;
border:3px solid red;
padding-top: 30px;
padding-left: 30px;
}
.child_1 {
border:1px solid blue;
height: 200px;
width: 200px;
float: left;
padding-top: 50px;
padding-left: 20px;
}
.child_2 {
border:1px solid green;
height: 300px;
width: 220px;
float: left;
margin-left: 30px;
}
.cucu {
height: 60px;
width: 60px;
border:2px solid green;
float: left;
}
</style>
<div class="parent">
<div class="child_1">
<div class="cucu">
</div>
<div class="cucu">
</div>
</div>
<div class="child_2">
INI ANAK KEDUA
</div>
</div>
</body>
</html>