🍃

[Tailwind CSS] ボタンUI

2025/01/05に公開

はじめに

この記事では、Tailwind CSSでよくあるボタンデザインを作成しました。

下記サイトを活用して表示しております。

参考資料

1. 「登録」のボタン

button01

<button class="py-1 px-5 bg-sky-500 rounded-2xl text-white font-black">登録</button>

2. 「削除」のボタン

button02

<button class="py-1 px-5 bg-red-500 rounded-2xl text-white font-black">削除</button>

3. 「戻る」のボタン

button03

<button class="py-1 px-5 bg-gray-100/50 border rounded-2xl">戻る</button>
GitHubで編集を提案

Discussion