I just started using Tailwind CSS, but I'm having trouble understanding how the grid system works!
I want my layout to look like this:
https://i.sstatic.net/hlHmy.png
Here is what I tried, but it's not working as expected:
<div class="grid grid-rows-3 grid-flow-col gap-4">
<div class="col-span-2 ...">col 1</div>
<div class="col-span-2 ...">col 2</div>
<div class="col-span-2 ...">col 3</div>
<div class="row-span-3 ...">col 4</div>
<div class="row-span-3 ...">sidebar</div>
</div>