-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanatomia.html
More file actions
39 lines (32 loc) · 778 Bytes
/
Copy pathanatomia.html
File metadata and controls
39 lines (32 loc) · 778 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Anatomia CSS</title>
<style>
.selector {
color: #fff;
font-size:30px;
text-align: center;
border: solid 5px navy;
font-family: Helvetica, sans-serif;
/* funcoes */
width: calc(100% - 100px);
background-color: rgb(34, 153, 189);
}
/* pseudo-classe */
.seletor:hover {
background-color: orangered;
}
/* usando um pseudo-elemento */
.seletor::first-letter {
font-size: 60px;
font-weight: bold;
}
/* */
</style>
</head>
<body>
<div class="selector">Conteúdo</div>
</body>
</html>