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?

tailwindが一部だけ効かない

Posted at

うっかりミスでtailwindが効かない事があったので共有。

tailwindが効かない書き方

<button
    className={`bg-sky-400 text-white w-[72px]${
        isDisabled ? "opacity-50" : ""
    }`}
>
    クリック
</button>

修正

<button
    className={`bg-sky-400 text-white w-[72px] ${
        isDisabled ? "opacity-50" : ""
    }`}
>
    クリック
</button>

$の後ろにスペースを入れていないと効かなくなります、、ご注意を。

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?