일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- CSS
- innerHTML
- for loop
- TypingEffect
- modal
- Temporal dead zone
- node.js
- HTML
- Event
- ES5
- innerText
- node
- Dom
- react
- addEventListener
- javascript
- Review
- yet
- es6
- nodeValue
- js
- keyboardEvent
- css:position
- beforeinput
- keyup
- Empty
- UI
- textContent
- a11y
- dotenv
- Today
- Total
the murmurous sea
CSS: flexbox 본문
justify-content
: aligns flex items along the main axis.
: flex-start(default) | flex-end | center | space-between | space-around
align-items
: aligns flex items along the cross axis.
: flex-start | flex-end | center | baseline | stretch(default)
align-self
: aligns a flex item along a cross axis, overriding the align-items value.
: flex-start | flex-end | center | baseline | stretch
align-content
: aligns a flex container's lines within the flex container when there's extra space on the cross axis.
: flex-start | flex-end | center | space-between | space-around | stretch(default)
flex-direction
: defines the direction of the main axis.
: row(default) | row-reverse | column | column-reverse
flex-wrap
: specifies whether flex items are forced on a single line or can be wrapped on multiple lines.
: nowrap(default) | wrap | wrap-reverse
flex-flow
: shorthand property for 'flex-direction' and 'flex-wrap'.
order
: specifies the order of the flex item.
: 0 is default
'#dev > 개념정리' 카테고리의 다른 글
Poptrox (0) | 2020.04.13 |
---|---|
@-ms-viewport {width: device-width;} (0) | 2020.04.13 |
CSS: em vs. rem (0) | 2020.04.06 |
CSS: alignment (0) | 2020.04.04 |
CSS: inline-block (0) | 2020.04.04 |