td4.2 Flashcards

1
Q

Impact de display: flex ?

A

Modifie disposition enfants.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Valeurs flex-direction ?

A

row row-reverse column column-reverse.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Valeurs align-items ?

A

stretch center baseline flex-start flex-end.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

justify-content ?

A

flex-start flex-end center space-between space-around.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Placer citation et menu ?

A

display: flex ajuster avec justify-content et align-items.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Layout deux colonnes ?

A

display: flex largeurs spécifiques.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Comment fixer la largeur de tous les [div] descendants de [nav] ?

A

Utiliser width: 100px. sur les [div].

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Comment centrer verticalement les enfants de [nav] ?

A

Utiliser align-items: center. sur [nav].

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Ajuster la hauteur des [div] titres des menus ?

A

Utiliser height: 200px. sur [nav].

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Alignement citation et menu dans l’en-tête ?

A

Utiliser display: flex. avec justify-content et align-items.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Comment repositionner le menu en bas de [header] ?

A

Utiliser flex-direction: column..

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Largeurs spécifiques pour [article] et [aside] ?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Ajouter une barre de défilement horizontale ?

A

Utiliser overflow-x: auto..

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Comment rendre une case du tableau ‘‘collante’’ ?

A

Utiliser position: sticky. sur la première case (:first-child).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Différence entre display: none. et visibility: hidden. ?

A

display: none. retire de l’affichage visibility: hidden. rend invisible mais occupe l’espace.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly