본문 바로가기
Development/CSS | SCSS | SASS

[Tailwindcss] 클래스 그룹화

by Dev. Jkun 2023. 10. 18.
반응형

tailwindcss 를 사용하다 보면 현란한 유틸리티 클래스들에 눈이 쾡 해지는 경험을 하게 됬다.
생산성이 너무 좋은데 추후에 가독성이 떨어짐이 있었는데 보니 css 를 그룹화 할 수 있게 되었다.

Before

<table class="min-w-full divide-y divide-gray-200 dark:divide-gray-700">
  <thead>
    <tr>
      <th scope="col" class="px-6 py-3 text-xs font-medium text-left text-gray-500 uppercase">Blog Name</th>
    </tr>
  </thead>
  <tbody class="divide-y divide-gray-200 dark:divide-gray-700">
    <tr>
      <td class="px-6 py-4 text-sm font-medium text-gray-800 whitespace-nowrap dark:text-gray-200">JKUN.NET</td>
    </tr>
  </tbody>
</table>

이렇게 위와 같이 있으면 읽기가 빡씨다..
그런데 이것을 그룹화 시키면 보다 더 구조화하고 가독성을 향상시키며 간단하게 사용할 수 있다.

CSS

@layer utilities {
	.table-basic {
		@apply min-w-full text-xs divide-y divide-gray-200 dark:divide-gray-700
	}
	.table-basic thead {
		@apply bg-gray-50 dark:bg-slate-800 dark:text-gray-200
	}
	.table-basic thead th {
		@apply px-6 py-3 text-center
	}
	.table-basic tbody {
		@apply divide-y divide-gray-200 dark:divide-gray-700 dark:text-gray-400
	}
	.table-basic tbody td {
		@apply px-6 py-3 whitespace-nowrap
	}
}

HTML

<table class="table-basic">
  <thead>
    <tr>
      <th scope="col">Name</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>JKUN.NET</td>
    </tr>
  </tbody>
</table>

이제 한숨 크게 놓인다. ㅎㅎㅎ;; 
너무 늦게 알았어.. ㅠㅠ;

반응형

'Development > CSS | SCSS | SASS' 카테고리의 다른 글

TailwindCSS SVG Icon 사이트 모음  (0) 2024.01.11
CSS 스크롤바 (Custom)  (0) 2021.06.08
css pinch zoom  (0) 2018.08.28
IE 10 이상으로 셀렉트박스 아이콘 숨기기  (0) 2015.05.08
inline-block 여백 제거  (0) 2013.12.17

댓글