skip to Main Content

Tailwind transition :after – CSS

I've got this html <ul class="flex gap-3"><li class="after:content-[''] after:block after:w-0 after:h-2 after:bg-black hover:after:w-full transition duration-1000 ease-in-out"><a href="/" class="text-lg font-bold text-black uppercase" > home </a></li></ul> on hover I'd like to apply transition for a nice animation but there is no animation…

VIEW QUESTION

Small problem with CSS Grid and Flexbox using Tailwind

Picture of corresponding example I want to move the Hello text, next to the border of CapName instead of underneath it. Any ideas? <div className='h-screen dark:bg-gray-900 grid items-center justify-items-center'> <div className='h-20 w-3/5 dark:bg-gray-500 border-2'> <div> <div className='border-2 p-2 w-2/5 h-full…

VIEW QUESTION

Scroll sections using tailwindcss – Html

so i have a code that look like this <div className='w-[50%] h-full flex items-center justify-center flex-col'> <div className='container grid grid-cols-2 grid-rows-4 p-10 gap-5 w-full h-full'> <div className='row-span-1 border-2 border-black'>1</div> <div className='row-span-2 border-2 border-black'>2</div> <div className='row-span-2 border-2 border-black'>3</div> <div className='row-span-2 border-2…

VIEW QUESTION
Back To Top
Search