@(Html.Kendo().TabStrip()
.Name("tabstrip")
.Items(tabstrip =>
{
tabstrip.Add().Text("About Us")
.Content(@<
text
>
</
text
>);
tabstrip.Add().Text("Contact Us")
.Content(@<
text
>
</
text
>);
})
.SelectedIndex(0)
)
<
style
>
.k-tabstrip .k-tabstrip-items { padding:0.3em 0.35em 0;}
.k-reset { text-align:right;}
</
style
>