Created
February 12, 2024 13:50
-
-
Save kirilkirkov/ea094f1eb589e65e176a0e79a4810ea6 to your computer and use it in GitHub Desktop.
CSS ONLY DROPDOWN ANIMATION WITH TAILWINDCSS
This file contains 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> | |
<li>Test</li> | |
<li class="group"> | |
<button>Proba</button> | |
<div | |
class="grid grid-rows-[0fr] transition-[grid-template-rows] duration-700 group-hover:grid-rows-[1fr] [&>*]:overflow-hidden"> | |
<ul class="row-[1_/_span_2] space-y-2 [&>li:first-child]:pt-2 [&>li:last-child]:pb-2"> | |
<li>Proba submenu</li> | |
<li>Proba submenu</li> | |
<li>Proba submenu</li> | |
</ul> | |
</div> | |
</li> | |
<li>Opa</li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment