> ## Documentation Index
> Fetch the complete documentation index at: https://docs.metabind.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Alignment

> Specifies the alignment of content within a container or frame.

```typescript theme={null}
type Alignment =
    | "center"
    | "leading"
    | "trailing"
    | "top"
    | "bottom"
    | "topLeading"
    | "topTrailing"
    | "bottomLeading"
    | "bottomTrailing";
```

<ParamField path="center" type="string">
  Centers content both horizontally and vertically.
</ParamField>

<ParamField path="leading" type="string">
  Aligns content to the leading edge (left in LTR, right in RTL).
</ParamField>

<ParamField path="trailing" type="string">
  Aligns content to the trailing edge (right in LTR, left in RTL).
</ParamField>

<ParamField path="top" type="string">
  Aligns content to the top edge.
</ParamField>

<ParamField path="bottom" type="string">
  Aligns content to the bottom edge.
</ParamField>

<ParamField path="topLeading" type="string">
  Aligns content to the top-leading corner.
</ParamField>

<ParamField path="topTrailing" type="string">
  Aligns content to the top-trailing corner.
</ParamField>

<ParamField path="bottomLeading" type="string">
  Aligns content to the bottom-leading corner.
</ParamField>

<ParamField path="bottomTrailing" type="string">
  Aligns content to the bottom-trailing corner.
</ParamField>
