Given the classnames "grid grid-cols-5 gap-2 place-items-end"
Is there a CSS-only way of resolving this ? Having to set a "col-span-4" on the 6h star from js is a bit tedious (considering the number of stars I can get is unknown).
Given the classnames "grid grid-cols-5 gap-2 place-items-end"
Is there a CSS-only way of resolving this ? Having to set a "col-span-4" on the 6h star from js is a bit tedious (considering the number of stars I can get is unknown).
Reversing the second row with
direction: rtl;
will do the job.HTML:
CSS:
Tailwind Play