Quick reference

Class
Properties
flex-rowflex-direction: row;
flex-row-reverseflex-direction: row-reverse;
flex-colflex-direction: column;
flex-col-reverseflex-direction: column-reverse;

Basic usage

Row

flex-row를 사용하면 플렉스 아이템을 텍스트 방향과 동일하게 수평으로 배치할 수 있습니다:

01
02
03
<div class="flex flex-row ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

Row reversed

flex-row-reverse를 사용하면 플렉스 아이템을 수평 방향으로 반대 순서로 배치할 수 있습니다:

01
02
03
<div class="flex flex-row-reverse ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

Column

플렉스 아이템을 세로로 배치하려면 flex-col을 사용하세요:

01
02
03
<div class="flex flex-col ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

Column reversed

flex-col-reverse를 사용하면 플렉스 아이템을 수직 방향으로 반대 순서로 배치할 수 있습니다:

01
02
03
<div class="flex flex-col-reverse ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

Applying conditionally

호버, 포커스 및 기타 상태

Tailwind는 상태에 따라 유틸리티 클래스를 조건부로 적용할 수 있게 해줍니다. 예를 들어, hover:flex-row 를 사용하면 flex-row 유틸리티를 hover 상태에서만 적용할 수 있습니다.

<div class="flex flex-col hover:flex-row">
  <!-- ... -->
</div>

사용 가능한 모든 상태 수정자 목록은 호버, 포커스, & 기타 상태 문서를 참고하세요.

브레이크포인트와 미디어 쿼리

여러분은 반응형 브레이크포인트, 다크 모드, prefers-reduced-motion 등과 같은 미디어 쿼리를 타겟팅하기 위해 변형 수식어를 사용할 수 있습니다. 예를 들어, md:flex-row를 사용하면 중간 화면 크기 이상에서만 flex-row 유틸리티를 적용할 수 있습니다.

<div class="flex flex-col md:flex-row">
  <!-- ... -->
</div>

더 자세히 알아보려면 반응형 디자인, 다크 모드, 그리고 다른 미디어 쿼리 수식어에 대한 문서를 확인하세요.