-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmargin3.html
More file actions
82 lines (74 loc) · 1.86 KB
/
Copy pathmargin3.html
File metadata and controls
82 lines (74 loc) · 1.86 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<title>Nested Margin Test (5 Levels Deep)</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #f5f5f5;
}
.test-title {
font-weight: bold;
margin-bottom: 20px;
font-size: 1.2em;
color: #333;
}
.level-1 {
background-color: #ffcdd2;
margin: 40px;
padding: 10px;
border: 2px solid #d32f2f;
}
.level-2 {
background-color: #f8bbd0;
margin: 30px;
padding: 8px;
border: 2px solid #c2185b;
}
.level-3 {
background-color: #e1bee7;
margin: 20px;
padding: 6px;
border: 2px solid #7b1fa2;
}
.level-4 {
background-color: #d1c4e9;
margin: 10px;
padding: 4px;
border: 2px solid #512da8;
}
.level-5 {
background-color: #c5cae9;
margin: 5px;
padding: 2px;
border: 2px solid #303f9f;
}
.content {
background-color: white;
padding: 10px;
text-align: center;
font-weight: bold;
}
.margin-info {
font-size: 0.8em;
color: #555;
margin-top: 5px;
}
</style>
</head>
<body>
<div class="level-1">
<div class="level-2">
<div class="level-3">
<div class="level-4">
<div class="level-5">
<div class="content">
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>