New to Telerik UI for Blazor? Download free 30-day trial

TabStrip Tabs Alignment

By design, the tabs are displayed on the left side of the TabStrip header.

You can customize their alignment through the TabAlignment parameter. It takes a member of the Telerik.Blazor.TabStripTabAlignment enumeration:

  • Start (default)
  • End
  • Center
  • Justify
  • Stretched

Set the desired tab alignment.

<TelerikTabStrip TabAlignment="@TabStripTabAlignment.End">
    <TabStripTab Title="First">
        First tab content.
    </TabStripTab>
    <TabStripTab Title="Second">
        Second tab content.        
    </TabStripTab>
    <TabStripTab Title="Third">
        Third tab content.
    </TabStripTab>
</TelerikTabStrip>

See Also

In this article