Quick reference

Class
Properties
justify-self-autojustify-self: auto;
justify-self-startjustify-self: start;
justify-self-endjustify-self: end;
justify-self-centerjustify-self: center;
justify-self-stretchjustify-self: stretch;

Basic usage

Auto

justify-self-auto를 사용하면 그리드의 justify-items 속성 값에 따라 아이템을 정렬할 수 있습니다:

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

Start

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

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

Center

justify-self-center를 사용하여 그리드 아이템을 인라인 축의 중앙에 정렬할 수 있습니다:

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

End

justify-self-end를 사용하여 그리드 아이템을 인라인 축의 끝으로 정렬할 수 있습니다:

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

Stretch

justify-self-stretch를 사용하여 그리드 아이템을 인라인 축 방향으로 그리드 영역에 꽉 차게 늘릴 수 있습니다:

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

Applying conditionally

호버, 포커스 및 기타 상태

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

<div class="justify-self-start hover:justify-self-end">
  <!-- ... -->
</div>

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

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

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

<div class="justify-self-start md:justify-self-end">
  <!-- ... -->
</div>

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