Question: *How do I build a two-column layout?*
Answer#
Flex with a fixed sidebar and fluid main, or a grid template. undefined
Markup#
<div class="flex">
<aside class="w-64 shrink-0 border-r">nav</aside>
<main class="flex-1 min-w-0 p-6">content</main>
</div>Where to go deeper#
Cookbook · Layout patterns · Utilities reference
Tip. This answer targets Nakshora 2.0. The same question is answered version-appropriately in every other release — use the version switcher.
