I have the following snippet:
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet"/>
<div class="h-screen w-32 bg-gray-300">
<aside class="grid grid-cols-2 bg-yellow-400 w-64 h-full">
<div class="bg-red-300">
One
</div>
<div class="bg-green-300">
Two
</div>
</aside>
</div>
There is a parent div with fixed width (w-32) and a child aside that is double the width of the parent. So I want only one half, the one that's inside the area of the parent div to be shown
How can I do that?


