Quick reference

Class
Properties
outline-offset-0outline-offset: 0px;
outline-offset-1outline-offset: 1px;
outline-offset-2outline-offset: 2px;
outline-offset-4outline-offset: 4px;
outline-offset-8outline-offset: 8px;

Basic usage

아웃라인 오프셋 설정하기

outline-* 유틸리티를 사용해 엘리먼트의 아웃라인 오프셋을 변경할 수 있습니다.

outline-offset-0

outline-offset-2

outline-offset-4

<button class="outline outline-offset-0 ...">Button A</button>
<button class="outline outline-offset-2 ...">Button B</button>
<button class="outline outline-offset-4 ...">Button C</button>

Applying conditionally

호버, 포커스 및 기타 상태

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

<button class="outline hover:outline-offset-2">
  <!-- ... -->
</button>

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

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

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

<button class="outline md:outline-offset-2">
  <!-- ... -->
</button>

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


Using custom values

테마 커스터마이징

tailwind.config.js 파일에서 theme.outlineOffset 또는 theme.extend.outlineOffset을 수정하여 outline-offset-* 유틸리티를 커스터마이징할 수 있습니다.

tailwind.config.js
module.exports = {
  theme: {
    extend: {
      outlineOffset: {
        3: '3px',
      }
    }
  }
}

기본 테마를 커스터마이징하는 방법에 대해 더 알아보려면 테마 커스터마이징 문서를 참고하세요.

임의 값

테마에 포함시키기 어려운 outline-offset 값을 일회성으로 사용해야 한다면, 대괄호를 사용해 임의의 값으로 속성을 즉석에서 생성할 수 있습니다.

<button class="outline-offset-[3px]">
  <!-- ... -->
</button>

임의 값 지원에 대해 더 알아보려면 임의 값 문서를 참고하세요.