tabAlignmentString(default: "start")
Specifies the alignment of the widget tabs. Valid values are "start" (default), "end", "center", "stretched" and "justify".
TabAlignment is not applicable with Scrollable TabStrip.
Example
<div id="tabstrip">
    <ul>
        <li>Tab 1</li>
        <li>Tab 2</li>
    </ul>
    <div>Content 1</div>
    <div>Content 2</div>
</div>
<script>
    $("#tabstrip").kendoTabStrip({
        tabAlignment: "center",
        animation: {
           open: {
               effects: "fadeIn"
           }
       }
    });
</script>In this article