- 주축(main axis)과 교차축(cross axis) ㄴ교차축은 일반적으로 수직임 (바뀔 수도 있음) - justify-content: 주축에 적용됨- align-items: 교차축에 적용됨 (참고)100 vh : vh 는 viewport height 다 (viewport는 screen 이라고 생각해도 된다)==> 100 screen height는 화면 높이의 100%를 뜻함 DOCTYPE html>html lang="kr"> head> title>The Nick Timestitle> style> body { height: 100vh; margin: 20px; display: flex; justify-content: space-bet..