Choose the shape you desire. Click here to view image The current shape looks like this... Click here to view image
bar : h-14 nav : h-full content : h-full footer : h-14
I am trying to create a layout similar to this using tailwind CSS, but it's not functioning as intended. The source code is provided below:
export default function MainComp() { return ( <div className='h-screen grid grid-rows-3 grid-cols-2 gap-1'> <div class="border-2 border-red-700 col-span-2">web bar</div> <div class="border-2 border-blue-700 row-span-2">nav bar</div> <div class="border-2 border-lime-800">contents</div> <div class="border-2 border-yellow-600 h-14">footer</div> </div> ) }
Looking for a solution...