-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathaula_css.css
71 lines (61 loc) · 1.12 KB
/
aula_css.css
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
/* CSS => Cascading Style Sheet (Folha de estilo em cascata) */
/*
seletor : {
propriedade: valor
cor: vermelho
} => regra CSS
*/
/* Tipos de seletores
1. Seletor por elemento/tag
*/
header {
background-color: burlywood;
}
/* 2. Seletor por classe */
.secaoDetalhesConta {
/* background-color: cadetblue; */
}
/* 3. Seletor por ID */
#exemploSelectorId {
color: red;
background-color: cadetblue;
font-family: monospace;
font-size: 20px;
}
/* Dimensionamento */
.secaoDetalhesConta {
/* width: 300px; */
/* height: 400px; */
background-color: rosybrown;
}
/* elementos inline a, strong, span...*/
a {
height: 50px;
/* width: 100px; */
background-color: salmon;
display: inline-block;
}
/* elementos bloco p, h2, section... */
p {
/* height: 50px;
width: 100px; */
}
/* Flexbox */
.exemploDivFlexbox {
background-color: #c2c2c2;
height: 300px;
display: flex;
/* flex-direction: column; */
justify-content: space-between;
align-items: flex-end;
}
.div1 {
width: 50px;
height: 50px;
background-color: thistle;
}
.div2 {
width: 50px;
height: 50px;
background-color: skyblue;
}