Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions components/tabstrip/scrollable-tabs.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ The following example demonstrates this option in action.
````RAZOR
<TelerikTabStrip Scrollable="true"
ScrollButtonsVisibility="@TabStripScrollButtonsVisibility.Auto"
Width="100%">
Width="30vw">
<TabStripTab Title="First">
First tab content.
</TabStripTab>
Expand All @@ -68,6 +68,12 @@ The following example demonstrates this option in action.
<TabStripTab Title="Third">
Third tab content.
</TabStripTab>
<TabStripTab Title="Fourth">
Fourth tab content.
</TabStripTab>
<TabStripTab Title="Fifth">
Fifth tab content.
</TabStripTab>
</TelerikTabStrip>
````

Expand All @@ -83,7 +89,8 @@ The following example demonstrates this option in action.

````RAZOR
<TelerikTabStrip Scrollable="true"
ScrollButtonsVisibility="@TabStripScrollButtonsPosition.Start">
ScrollButtonsPosition="@TabStripScrollButtonsPosition.Start"
Width="280px">
<TabStripTab Title="First">
First tab content.
</TabStripTab>
Expand All @@ -93,6 +100,12 @@ The following example demonstrates this option in action.
<TabStripTab Title="Third">
Third tab content.
</TabStripTab>
<TabStripTab Title="Fourth">
Fourth tab content.
</TabStripTab>
<TabStripTab Title="Fifth">
Fifth tab content.
</TabStripTab>
</TelerikTabStrip>
````

Expand Down
Loading