-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtab.html
More file actions
53 lines (44 loc) · 1.14 KB
/
tab.html
File metadata and controls
53 lines (44 loc) · 1.14 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
<div class="tabs">
<input type="radio" id="tab1" name="tab" checked>
<label for="tab1">Tab 1</label>
<input type="radio" id="tab2" name="tab">
<label for="tab2">Tab 2</label>
<input type="radio" id="tab3" name="tab">
<label for="tab3">Tab 3</label>
<div class="tab-content" id="content1">Content for Tab 1</div>
<div class="tab-content" id="content2">Content for Tab 2</div>
<div class="tab-content" id="content3">Content for Tab 3</div>
</div>
<style>
.tabs {
width: 100%;
max-width: 400px;
margin: 20px auto;
text-align: center;
}
.tabs input {
display: none;
}
.tabs label {
display: inline-block;
padding: 10px 20px;
cursor: pointer;
background: #ddd;
margin: 0;
border-radius: 5px 5px 0 0;
}
.tabs label:hover {
background: #bbb;
}
.tab-content {
display: none;
background: #eee;
padding: 15px;
border-radius: 0 0 5px 5px;
}
#tab1:checked~#content1,
#tab2:checked~#content2,
#tab3:checked~#content3 {
display: block;
}
</style>