๋ถ๋ชจ ์์์ธ Flex Container์ ์์ ์์์ธ Flex Item
Flxe ๊ธฐ๋ฅ์ ์ํฅ์ ๋ฐ๋ ์ ์ฒด ๊ณต๊ฐ์ ๋ถ๋ชจ ์์์ธ Container
์ค์ ๋ Flex ์์ฑ์ ๋ฐ๋ผ Container ์ ์์ ์์์ธ Item๋ค์ด ์ฌ๋ฌ ํํ๋ก ๋ฐฐ์น
* ๋ฐฐ์น ๋ฐฉํฅ ์์ฑ _ flex-direction
.container {
flex-direction: row;
/* flex-direction: column; */
/* flex-direction: row-reverse; */
/* flex-direction: column-reverse; */
}
* ์ ๋ ฌ ์์ฑ
๋ฉ์ธ์ถ ๋ฐฉํฅ ์ค์
justify-content
.container {
justify-content: center;
/* justify-content: flex-start; */
/* justify-content: flex-end; */
/* justify-content: space-between; */
/* justify-content: space-around; */
/* justify-content: space-evenly; */
}
์์ง์ถ ๋ฐฉํฅ ์ค์
align-items
.container {
align-items: center;
/* align-items: flex-start; */
/* align-items: flex-end; */
/* align-items: stretch; */
/* align-items: baseline; */
}
'๐ป > Front-end' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
Simple Diary - (1) ์ค๋ณต ์ ๊ฑฐ (state, onChange ํฉ์น๊ธฐ) (0) | 2023.01.02 |
---|---|
React - State์ Props (0) | 2022.03.28 |