Tailwind CSS
公式ドキュメント
記述例
MDXファイル内で、HTML要素にTailwind CSSのクラスを適用することができます。以下の例では、<div>要素にbg-blue-500とtext-whiteのクラスを適用しています。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
<div>要素にbg-blue-500とtext-whiteのクラスを適用しています。
<div className="bg-blue-500 text-white p-4">
<h1>スタイリング</h1>
<p>このページは、Tailwind CSSを使ったスタイリングの記述例です。</p>
</div>