Sizing

The Telerik and Kendo UI Sizing utilities enable you to manipulate the dimensions of an element.

Width

The Telerik and Kendo UI Width Utilities are CSS utility classes that enable you to control the width of an element.

Utility ClassCSS Property
.k-w-0width: 0;
.k-w-1pxwidth: 1px;
.k-w-1width: 0.25rem;
.k-w-fullmin-width: 100%;
.k-w-screenwidth: 100vw;
.k-w-minwidth: min-content;
.k-w-maxwidth: max-content;
.k-w-fitwidth: fit-content;
.k-min-w-0min-width: 0;
.k-min-w-1pxmin-width: 1px;
.k-min-w-1min-width: 0.25rem;
.k-min-w-fullmin-width: 100%;
.k-min-w-screenmin-width: 100vw;
.k-min-w-minmin-width: min-content;
.k-min-w-maxmin-width: max-content;
.k-min-w-fitmin-width: fit-content;
.k-max-w-0max-width: 0;
.k-max-w-1pxmax-width: 1px;
.k-max-w-1max-width: 0.25rem;
.k-max-w-fullmax-width: 100%;
.k-max-w-screenmax-width: 100vh;
.k-max-w-minmax-width: min-content;
.k-max-w-maxmax-width: max-content;
.k-max-w-fitmax-width: fit-content;

Fixed

Use the k-w-{value} utility to set a fixed width to an element.

Full

Use the k-w-full utility to make the element expand to 100% of its parent's width.

Screen

Use the k-w-screen utility to make the element expand to 100% of the viewport width.

Minimum

Use the k-w-min-{width} utility to set a minimum width to an element.

Maximum

Use the k-w-max-{width} utility to set a maximum width to an element.