gap Number (default: 0)

Defines the space in pixels after the last item to stay empty.

The gap value is taken into account when items overflow and continues to remain empty.

Example

Open In Dojo
<div style="width: 400px">
    <nav id="breadcrumb"></nav>
</div>

<script>
    $("#breadcrumb").kendoBreadcrumb({
        gap: 150,
        value: 'Telerik UI/Navigation/Breadcrumb'
    });
</script>
In this article