-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-structure.html
More file actions
53 lines (49 loc) · 981 Bytes
/
Copy pathtest-structure.html
File metadata and controls
53 lines (49 loc) · 981 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
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<style>
.collapsible-section {
margin-bottom: 15px;
background: #f8f9fa;
border-radius: 8px;
overflow: hidden;
border: 2px solid red;
}
.section-header {
padding: 15px;
background: #667eea;
color: white;
cursor: pointer;
}
.section-content {
max-height: 2000px;
overflow: hidden;
padding: 20px;
background: lightblue;
}
.section-content.collapsed {
max-height: 0;
padding: 0 20px;
}
.section-content.active {
max-height: none;
}
</style>
</head>
<body>
<h1>Structure Test</h1>
<div class="collapsible-section">
<div class="section-header">Section 1</div>
<div class="section-content active">
<p>Content 1</p>
</div>
</div>
<div class="collapsible-section">
<div class="section-header">Section 2</div>
<div class="section-content active">
<p>Content 2</p>
</div>
</div>
<p style="color:red;">This should be OUTSIDE sections</p>
</body>
</html>