drs
drs

Reputation: 1255

Tailwindcss - How to order columns vertically?

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

Answers (1)

zafer onay
zafer onay

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

Related Questions