Single Col

SingleCol lets you create a single-column layout. It’s basically a Wrap without horizontal padding.


Used for Single-column content

You can use width and self-* to shift the entire SingleCol column to the left, center, or right easily.

index.html
<div class="Wrap">
<div class="SingleCol w-[15rem] self-end">
<div>Inner Content</div>
<div>Inner Content</div>
<div>Inner Content</div>
</div>
</div>
SingleCol
Inner Content
Inner Content
Inner Content

Hybrid between Wrap and Vertical

SingleCol behaves like Vertical so you can place its items on the left, center, or right easily.

index.html
<div class="SingleCol">
<div class="self-start">Left-aligned</div>
<div class="self-center">Centered</div>
<div class="self-end">Right-aligned</div>
</div>
SingleCol
Inner Content
Inner Content
Inner Content