본문 바로가기
웹01

웹_240125수업

by 없쟈냐옹 2024. 1. 25.

https://flexboxfroggy.com/#ko

 

Flexbox Froggy

A game for learning CSS flexbox

flexboxfroggy.com

 

 

[flex-direction] -> flex-item 방향정렬

row - 가로 한줄에 같이 배치 : 기본값

justify-content:; -> 가로 작동

align-items;: -> 세로작동

flex-grow -> 가로에서 작동

 

column - 세로 한줄에 하나씩 배치

justify-content:; -> 세로 작동

align-items;: -> 가로 작동

flex-grow -> 세로에서 작동(높이)

 

-> reverse를 사용하게 되면 start와 end방향이 바뀐다.

 

ex) 

- row

justify-content: flex-start; -> 좌측정렬

row-reverse

justify-content: flex-start; -> 우측정렬

 

align-self: flex-end;

 

 

https://codepen.io/leenyooo/pen/Babwmvj?editors=1100

 

justfy-content: space-"";

...

codepen.io

 

 

'웹01' 카테고리의 다른 글

웹01_230129수업  (0) 2024.01.29
웹01_240126수업(flex-grow) vscode설치  (0) 2024.01.26
웹1_240123 ( flex 시작)  (0) 2024.01.23
웹1_240122수업  (0) 2024.01.22
웹1_240119수업  (0) 2024.01.19