Quick reference

Class
Properties
table-autotable-layout: auto;
table-fixedtable-layout: fixed;

Basic usage

Auto

table-auto를 사용하면 테이블이 셀의 내용에 맞게 컬럼 크기를 자동으로 조정합니다.

Song Artist Year
The Sliding Mr. Bones (Next Stop, Pottersville) Malcolm Lockyer 1961
Witchy Woman The Eagles 1972
Shining Star Earth, Wind, and Fire 1975
<table class="table-auto">
  <thead>
    <tr>
      <th>Song</th>
      <th>Artist</th>
      <th>Year</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>The Sliding Mr. Bones (Next Stop, Pottersville)</td>
      <td>Malcolm Lockyer</td>
      <td>1961</td>
    </tr>
    <tr>
      <td>Witchy Woman</td>
      <td>The Eagles</td>
      <td>1972</td>
    </tr>
    <tr>
      <td>Shining Star</td>
      <td>Earth, Wind, and Fire</td>
      <td>1975</td>
    </tr>
  </tbody>
</table>

고정 너비

table-fixed를 사용하면 테이블이 내용을 무시하고 컬럼의 너비를 고정할 수 있습니다. 첫 번째 행의 너비가 전체 테이블의 컬럼 너비를 결정합니다.

일부 컬럼의 너비를 수동으로 설정할 수 있으며, 명시적으로 너비가 지정되지 않은 컬럼들은 남은 너비를 균등하게 나눠갑니다.

아티스트 연도
The Sliding Mr. Bones (Next Stop, Pottersville) Malcolm Lockyer 1961
Witchy Woman The Eagles 1972
Shining Star Earth, Wind, and Fire 1975
<table class="table-fixed">
  <thead>
    <tr>
      <th></th>
      <th>아티스트</th>
      <th>연도</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>The Sliding Mr. Bones (Next Stop, Pottersville)</td>
      <td>Malcolm Lockyer</td>
      <td>1961</td>
    </tr>
    <tr>
      <td>Witchy Woman</td>
      <td>The Eagles</td>
      <td>1972</td>
    </tr>
    <tr>
      <td>Shining Star</td>
      <td>Earth, Wind, and Fire</td>
      <td>1975</td>
    </tr>
  </tbody>
</table>

Applying conditionally

호버, 포커스 및 기타 상태

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

<table class="hover:table-fixed">
  <!-- ... -->
</table>

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

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

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

<table class="md:table-fixed">
  <!-- ... -->
</table>

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