-
Notifications
You must be signed in to change notification settings - Fork 384
/
Copy pathaba-target.html
executable file
·68 lines (57 loc) · 1.07 KB
/
aba-target.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>untitled</title>
<style type="text/css" media="screen">
* {margin:0; padding:0;}
body {
font:13px verdana, arial, tahoma;
}
ul { margin:20px 20px 0; list-style:none;}
li {float:left;}
.itens a {
float:left;
border:1px solid black;
background:gray;
padding:5px 15px;
color:#FFF;
text-decoration:none;
}
.itens a:focus {background:red;}
.aba { margin:0 20px;width:400px; clear:both; position:relative;}
.aba div {
background:white;
border:1px solid black;
padding:10px;
width:100%;
display:none;
position:absolute;
}
.aba div:first-child {
display:block;
}
.aba div:target {
display:block;
}
</style>
</head>
<body>
<ul class="itens">
<li><a href="#aba1">Aba 1</a></li>
<li><a href="#aba2">Aba 2</a></li>
<li><a href="#aba3">Aba 3</a></li>
</ul>
<div class="aba">
<div id="aba1">
Primeira Aba
</div>
<div id="aba2">
Primeira Aba 2
</div>
<div id="aba3">
Primeira Aba 3
</div>
</div>
</body>
</html>