Reputation: 1255
With tailwind css, how can I order columns vertically?
Please see https://play.tailwindcss.com/kPS1eigovs
I thought grid-flow-col would have worked, but output not as expected.
Thank you
Upvotes: 1
Views: 2764
Reputation: 1783
You need to define row count as well besides column count.
<div class="grid grid-rows-4 grid-cols-2 gap-4 grid-flow-col">
Check working example.
Upvotes: 1