-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConteudo.txt
66 lines (53 loc) · 1.08 KB
/
Conteudo.txt
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
Conteúdos workshop CSS:
#### BASE ####
> Tipos de elementos ( Inline, Bloco )
> Propriedades default ()
> Seletores
> elementos
> classes
> ID
> atributos
> descendentes
> +, ~, >
> Pseudo seletores
> :link
> :visited
> :active
> :hover
> :focus
> :enabled
> :disabled
> :checked
> :not()
> :nth-child(n)
> :nth-last-child(n)
> :nth-of-type(n)
> :nth-last-of-type(n)
> :first-child
> :last-child
> :first-of-type
> :last-of-type
> Pseudo elementos
> :first-line
> :first-letter
> ::before
> ::after
> Prioridade de seletores
> A. Estilo definido com a tag "style" recebe a pontuação 1
> B. Soma dos seletores ID
> C. Soma das classes, atributos e pseudo-classes
> D. Soma dos pseudo-elementos
#### POSICIONAMENTO ####
> box-sizing
> float
> positions
> relative
> static
> absolute
> fixed
> flex
#### Chrome Dev Tools ####
> APIs para box-shadow, text-shadow, animation, color
> Computed
Fontes:
https://css-tricks.com/almanac/selectors/a/attribute/