nonQuiz Flashcards
[CSS]
Name of property with multiple values
shorthand property
[CSS]
the only properties that are allowed in the
container class ( .container )
max-width: and
margin: 0 auto;
[CSS]
When do you set height on an element?
Never.
The only time you set height on an element is when you need additional room
[CSS]
the only property allowed for row class? ( .row )
display: flex;
[CSS]
the only property allowed for column classes?
what does the column name need?
flex-basis:
(flex-basis = width)
column name needs to describe the size (ex: column-full, column-third, column-two-thirds)
[CSS] when should you use absolute positioning?
absolute positioning should only be used to layer something on top of something else
[CSS] what does justify-content do?
Aligns items horizontally
[CSS] What values does justify-content accept?
Flex-start
Flex-end
Center
Space-between
Space-around
[CSS] what happens with justify-content: flex-start ?
Items align to the left side of the container
[CSS] what happens with justify-content: flex-end ?
Items align to the right side of the container
[CSS] what happens with justify-content: center ?
Items align to the center of the container
[CSS] what happens with justify-content: space-between ?
Items display with equal spacing between them
[CSS] what happens with justify-content: space-around ?
Items display with equal spacing around them
[CSS] what does align-items do?
It aligns items vertically
[CSS] what values does align-items accept?
Flex-start
Flex-end
Center
Baseline
Stretch