skip to Main Content

Html – How to create an animation sequence with Tailwind?

I have the following element: <div dir="rtl" class="aspect-ratio-1 group relative h-min w-full max-w-[300px] flex-shrink-0 lg:max-w-[390px]"> <img class="rounded-s-full border-[12px] border-indigo-400" alt="Placeholder" src="https://placehold.co/400x600" /> </div> And I'm looking to create an animation sequence with Tailwind. For the sequence, first rounded-s-full should take…

VIEW QUESTION

Reactjs – Make empty cell in css grid clickable

I have a grid structure like this (for a weekly calendar): <div className="grid flex-auto grid-cols-1 grid-rows-1"> {/* Horizontal lines */} <div className="col-start-1 col-end-2 row-start-1 grid divide-y divide-gray-100" style={{ gridTemplateRows: 'repeat(48, minmax(3.5rem, 1fr))' }} > <div className="sticky left-0 z-20 -ml-14 -mt-2.5…

VIEW QUESTION
Back To Top
Search