CSS

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/17

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

18 Terms

1
New cards

display: flex

Changes an element to a block-level container with flex items inside of it

2
New cards

display: inline-flex

Allows multiple flex containers to appear inline with each other.

3
New cards

justify-content

Used to space items along the main axis

Aligns items horizontally

4
New cards

align-items

Used to space items along the cross axis

Aligns items vertically

5
New cards

flex-grow

Used to specify how much space (and in what proportions) flex items absorb along the main axis

6
New cards

flex-shrink

Used to specify how much flex items shrink and in what proportions along the main access

7
New cards

flex-basis

Used to specify the initial size of an element styled with flex-grow and/or flex-shrink

8
New cards

flex

Used to specify flex-grow, flex-shrink, and flex-basis in one declaration

9
New cards

flex-wrap

Specifies that elements should shift along the cross axis if the flex container is not large enough

10
New cards

align-content

Used to space rows along the cross axis

11
New cards

flex-direction

Used to specify the main and cross axis

12
New cards

flex-flow

Used to specify flex-wrap and flex-direction in one declaration

13
New cards

em

Represents the font-size of the current element or the default base font-size set by the browser if none is given.

14
New cards

rem

Instead of checking parent elements to size font, it checks the root element. The root element is the <html> tag

15
New cards

space-between

Items display with equal spacing between them

16
New cards

space-around

Items display with equal spacing around them

17
New cards

baseline

Items display at the bottom of the container

18
New cards

align-items: stretch

Items are stretched to fit the container