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
or space-x-4
.
<script src="https://cdn.tailwindcss.com"></script>
<!-- using gap property -->
<div class="grid grid-cols-12 text-black bg-red-100 space-x-10 mb-10">
<div class='col-span-5 bg-red-300'>COL_SPAN_5</div>
<div class='col-span-3 bg-green-300'>COL_SPAN_3</div>
<div class='col-span-3 bg-blue-300'>COL_SPAN_3</div>
</div>
<!-- using space-x property -->
<div class="grid grid-cols-12 text-black bg-red-100 gap-10 ">
<div class='col-span-5 bg-red-300'>COL_SPAN_5</div>
<div class='col-span-3 bg-green-300'>COL_SPAN_3</div>
<div class='col-span-3 bg-blue-300'>COL_SPAN_3</div>
</div>