0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Next.jsでTailWindCssを使ってみる

Posted at

はじめに

Typescript + React + Next.jsの勉強中です。

少しずつコードを書き始めました。

その過程で、TailWindCssをインストールしたため

Next.jsでのTailWindCssのインストール方法をまとめていきます。

TailWind CSSとは

Tailwind CSSはutility classを活用したCSSフレームワークです。
CSSフレームワークには他にもBootstrapなどがあり、これらのフレームワークでは事前に準備されているコンポーネントを活用します。

TailwindCSSではコンポーネントなどはなく、utility classを使って独自にデザインを行ってコンポーネントを構築します。

やりたいこと

Next.jsでTailWindCssを使いたい

前提条件

・Next.jsのインストールは完了している

インストール方法

# npmの場合
npm install tailwindcss

# yarnの場合
yarn add tailwindcss

これで完了です。

公式ドキュメントには glabal.cssやtailwind.config.tsに追記が必要とありましたが、インストールしたら自動で変更が入っていました。

もしtailwind.config.tsがない場合は下記を実行して作成してください。

npx tailwindcss init -ts

設定の詳細は公式をご確認ください。

使い方

bg-blue-500: 背景に青を指定
text-white: 文字色に白を指定
px-4: 左右に4のパディング
py-2: 上下に2のパディング
<button className="bg-blue-500 text-white py-2 px-4 ">
  Sample Button
</button>

スクリーンショット 2024-11-15 13.36.03.png

おわりに

TailWindCss のインストール方法と簡単な使い方をまとめました。

少しでも誰かのお役に立てれば幸いです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?