New to Telerik UI for BlazorStart a free 30-day trial

TabStrip Tab Position and Alignment

Updated on Jun 24, 2026

The TabStrip allows you to customize the placement and layout of the tabs, according to your requirements. This article describes the available options and how they integrate with one another.

Tab Position

The TabStrip tabs can appear on any side of the component. By default, the tabs display at the top.

To customize the tab position, use the TabStrip TabPosition parameter and use a TabPosition enum value.

Setting TabStrip TabPosition

RAZOR
<TelerikTabStrip TabPosition="@TabPosition.Bottom" />

When using the TabStrip Height parameter together with Left or Right tab position, make sure the component is high enough to fit the tabs. Otherwise, enable tab scrolling or the overflow menu.

When using right-to-left mode, the Left and Right tab positions do not switch. The two settings result in the same UI as in left-to-right layouts.

Tab Alignment

The TabStrip tab alignment determines the tab layout, tab dimensions and spacing in the context of a given tab position.

To customize the alignment, set the TabStrip TabAlignment parameter to a TabStripTabAlignment enum. The default value is Start, which means that the tabs render:

  • On the left side of the component header when using horizontal tabs with Top or Bottom tab position.
  • At the top side of the component header when using vertical tabs with Left or Right tab position.

When using horizontal tabs, the Start and End alignment values take into account if right-to-left mode is being used. In other words, Start is equivalent to left in LTR mode and right in RTL mode.

Setting TabStrip TabAlignment

RAZOR
<TelerikTabStrip TabAlignment="@TabStripTabAlignment.Center" />

Example

Using TabStrip Alignment and Position

<div style="display: flex; gap: 2em; flex-wrap: wrap; margin: 0 0 2em;">
    <div>
        <strong>Tab Alignment:</strong>
        <TelerikButtonGroup SelectionMode="@ButtonGroupSelectionMode.Single">
            @foreach (TabStripTabAlignment alignment in TabStripTabAlignments)
            {
                <ButtonGroupToggleButton Selected="@(TabStripTabAlignment == alignment)"
                                         SelectedChanged="@((bool selected) => { if (selected) TabStripTabAlignment = alignment; })">
                    @alignment
                </ButtonGroupToggleButton>
            }
        </TelerikButtonGroup>
    </div>
    <div>
        <strong>Tab Position:</strong>
        <TelerikButtonGroup SelectionMode="@ButtonGroupSelectionMode.Single">
            @foreach (TabPosition position in TabPositions)
            {
                <ButtonGroupToggleButton Selected="@(TabStripTabPosition == position)"
                                         SelectedChanged="@((bool selected) => { if (selected) TabStripTabPosition = position; })">
                    @position
                </ButtonGroupToggleButton>
            }
        </TelerikButtonGroup>
    </div>
</div>

<TelerikTabStrip @bind-ActiveTabId="@TabStripActiveTabId"
                 TabAlignment="@TabStripTabAlignment"
                 TabPosition="@TabStripTabPosition"
                 Height="300px">
    @for (int i = 1; i <= 5; i++)
    {
        string tabId = $"tab{i}";
        string tabTitle = $"Tab {i}";
        <TabStripTab @key="@tabId"
                     Id="@tabId"
                     Title="@tabTitle">
            <p>Content of @tabTitle</p>
        </TabStripTab>
    }
</TelerikTabStrip>

@code {
    private string TabStripActiveTabId { get; set; } = "tab1";

    private TabStripTabAlignment TabStripTabAlignment { get; set; } = TabStripTabAlignment.Start;
    private TabPosition TabStripTabPosition { get; set; } = TabPosition.Top;

    private readonly TabStripTabAlignment[] TabStripTabAlignments = new[]
    {
        TabStripTabAlignment.Center,
        TabStripTabAlignment.End,
        TabStripTabAlignment.Justify,
        TabStripTabAlignment.Start,
        TabStripTabAlignment.Stretched
    };

    private readonly TabPosition[] TabPositions = new[]
    {
        TabPosition.Bottom,
        TabPosition.Left,
        TabPosition.Right,
        TabPosition.Top
    };
}

Next Steps

See Also