tailwind CSS in nextjs

devPomme·2022년 5월 16일
0
  1. 사용 방법
    a. 설치
npm install -D tailwindcss postcss autoprefixer
(또는 yarn add -D tailwindcss postcss autoprefixer)


npx tailwindcss init -p // tailwind.config.js 파일 생성
// tailwind.config.js 

module.exports = {
  content: [
    "./pages/**/*.{js,ts,jsx,tsx}",
    "./components/**/*.{js,ts,jsx,tsx}",
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}
//styles/globals.css;

@tailwind base;
@tailwind components;
@tailwind utilities;

b. Tailwind CSS IntelliSense extension 설치

c. 커스터마이징 (사용자 정의 스타일 추가)

d. 조건부 스타일링

<div
	className={`${isSelected ? 'bg-pz-bg-main' : 'bg-transparent'}`}
	onClick={onClick}
/>
  1. 참고 자료
  2. tailwindcomponents
profile
헌신하고 확장하는 삶

0개의 댓글