Handling Hover, Focus, and Other States - Tailwind CSS
hover, active ๊ฐ์ css๋ฅผ ๊ฐ๋จํ ์ ์ฉํ ์ ์์.
<button className="p-5 bg-blue-500 hover:bg-teal-300 active:bg-yellow-400">
Checkout
</button>
hover:
, active:
๊ณผ ๊ฐ์ด ์ ๋ฏธ์ฌ๋ฅผ ๋ถ์ธ ํ ์ํ๋ ํด๋์ค ๋ฃ์ผ๋ฉด๋จ.์ฌ๋ฌ modifier๋ฅผ ๋์์ ๋ง์กฑํ ๋ ์ฌ์ฉํ๋ ค๋ฉด modifier๋ฅผ : ๋ก ๋ถ์ฌ์ฃผ๋ฉด๋จ.
first-letter:hover:text-black
file:hover:bg-purple-500
| ์์๋ ์ค์ํ์ง ์๋ค.
<span className="hidden peer-focus:peer-invalid:block text-red-500">
This input is invalid
</span>