Question: *How do I create equal-height cards?*

Answer#

Grid stretches children by default; pin card actions to the bottom with flex-col + mt-auto. undefined

Markup#

html
<div class="grid md:grid-cols-3 gap-6">
  <div class="flex flex-col border rounded-xl p-6"><p class="flex-1">body</p><button class="mt-4">Action</button></div>
</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.