I'm using tailwind for CSS.
I have a simple div
that has 3 children.
I want them to have space between them in the main-axis. Here's my whole code:
<div className="grid grid-cols-12 text-white justify-between">
<div className='col-span-5'>COL_SPAN_5</div>
<div className='col-span-3'>COL_SPAN_3</div>
<div className='col-span-3'>COL_SPAN_3</div>
</div>
But it is not working. The items in the grid don't move.
I tried using the justify-items-center
property to see if anything changes. It works.
Using justify-between
or any justify-content
property doesn't work.
It's also not working in vanilla CSS. Here's the working example: https://codepen.io/anas-ansari/pen/xxparoM
I know that it can be fixed by adding gap-{n}
but it I want space in between (not around in any case).
My question is why can't I apply justify-content
even when I have seen (I think) some examples using justify-content
on grid
?
Can you please help me?
You can use any of the two property
gap-4
orspace-x-4
.