Quick reference

Class
Properties
justify-items-startjustify-items: start;
justify-items-endjustify-items: end;
justify-items-centerjustify-items: center;
justify-items-stretchjustify-items: stretch;

Basic usage

Start

justify-items-start를 사용하여 그리드 아이템을 인라인 축의 시작 부분에 정렬합니다:

01
02
03
04
05
06
<div class="grid justify-items-start ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
  <div>04</div>
  <div>05</div>
  <div>06</div>
</div>

End

justify-items-end를 사용하여 그리드 아이템을 인라인 축의 끝으로 정렬합니다:

01
02
03
04
05
06
<div class="grid justify-items-end ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
  <div>04</div>
  <div>05</div>
  <div>06</div>
</div>

Center

justify-items-center를 사용하여 그리드 아이템을 인라인 축을 따라 정렬할 수 있습니다:

01
02
03
04
05
06
<div class="grid justify-items-center ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
  <div>04</div>
  <div>05</div>
  <div>06</div>
</div>

Stretch

justify-items-stretch를 사용하여 아이템을 인라인 축을 따라 늘릴 수 있습니다:

01
02
03
04
05
06
<div class="grid justify-items-stretch ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
  <div>04</div>
  <div>05</div>
  <div>06</div>
</div>

Applying conditionally

호버, 포커스 및 기타 상태

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

<div class="grid justify-items-start hover:justify-items-center">
  <!-- ... -->
</div>

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

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

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

<div class="grid justify-items-start md:justify-items-center">
  <!-- ... -->
</div>

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