CSS to tell this kendo splitter to use 100% of browser window height?

401 Views Asked by At

What CSS is required to make this splitter use 100% of vertical space, so that it extends from the top of the browser window to the bottom of the browser window?

http://dojo.telerik.com/aHIzozUw/3

1

There are 1 best solutions below

5
On

Just add below CSS will resolve your issue. Try this I hope it'll help you out. Thanks

#vertical-tiers {
    box-sizing: border-box;
    min-height: 100vh;
}