New to Telerik UI for Blazor? Start a free 30-day trial
TabStrip Tabs Alignment
Updated on Dec 13, 2024
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>