Created
June 18, 2023 07:42
-
-
Save tfsojon/f5186869dc18581e4e0258a06a108b86 to your computer and use it in GitHub Desktop.
tailwindcss child selector
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="list-disc [&>*:last-child]:text-blue-600 [&>*:last-child]:font-bold "> | |
<li>First List Item</li> | |
<li>Second List Item</li> | |
<li>Third List Item</li> | |
<li>Fourth List Item</li> | |
<li>Fifth List Item</li> | |
<li>Last List Item</li> | |
</ul> | |
<ul class="list-disc"> | |
<li class="last:text-blue-600 last:font-bold">First List Item</li> | |
<li class="last:text-blue-600 last:font-bold">Second List Item</li> | |
<li class="last:text-blue-600 last:font-bold">Third List Item</li> | |
<li class="last:text-blue-600 last:font-bold">Fourth List Item</li> | |
<li class="last:text-blue-600 last:font-bold">Fifth List Item</li> | |
<li class="last:text-blue-600 last:font-bold">Last List Item</li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment