New to Kendo UI for AngularStart a free 30-day trial

Truncate Long TabStrip Tab Titles.

Environment

ProductProgress® Kendo UI for Angular TabStrip

Description

How can I truncate long TabStrip tab titles and render ellipsis?

Solution

By default, the TabStrip component does not truncate long tab titles as they don't have fixed width. You can truncate them and show ellipsis by using some custom CSS styling:

css
.k-tabstrip .k-tabstrip-items .k-item .k-link {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 75px;
    display: inline-block;
}

You can further control the width of the tabs by adjusting the width CSS property value.

The following example shows the full implementation of the demonstrated approach.

Change Theme
Theme
Loading ...
In this article
EnvironmentDescriptionSolution
Not finding the help you need?
Contact Support