Module11 Flashcards

1
Q

a[title] {
….
}

A

A bevat attribute title

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

a[class~=‘picture’] {
….
}

A

A class bevat het woord picture

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

a[href$=‘.png’ i] {
….
}

A

A waarvan href eindigt op .png
i staat voor case insensitive

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

a[class*=‘left’] {
….
}

A

‘Left’ is een deel van de classname

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

Wat doet justify-content in de display:flex?

A

Hoe wil je de blokken in de richting van de content verdelen. Ligt aan het kiezen voor rijen of kolommen bij flex-direction. Bijv; flex-start, flex-end, center, space-between, space-around, space-evenly.

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

Wat doet Align items in de display:flex?

A

bepaald hoe je de content in tegengestelde richting wilt uitlijnen. Hangt af van flex-direction rij of kolom. Bijv; flex-start, flex-end, center, stretch, baseline

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

align-self

A

Het zelf schikken van de items (per item andere keuze mogelijk)

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

flex-grow

A

bepaald welk item het meest groeit bij het veranderen van de schermafmeting

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

order

A

in display:flex welk item op welke positie moet komen te staan

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

fr

A

fraction

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

Hoe deel je je grid in in CSS?

A

display: grid;
(grid-gap): ;
grid-template-rows: ;
grid-template-columns: repeat(3, 1fr);
grid-template-areas:
‘A B C’
‘A B D’
CSSchilderen -> grid-area: ;

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

em

A

relative to the font-size of the element
vb | 2em = 2x size of current font

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

ch

A

relative to the width of 0

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

rem

A

relative to the font-size of the root element

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

@media (max-width) {
….
}

A

Hoe te stylen wanneer het op een kleiner scherm wordt getoont

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