JavaScript UI Libraries & Blazor Components Suite – Smart UI › Forums › Docking Layout › How to set splitter item to take up all remaining space? › Reply To: How to set splitter item to take up all remaining space?
July 25, 2020 at 5:13 am
#100940
admin
Keymaster
Hi davout,
To achieve that you may use this:
html, body {
width: 100%; height: 100%; padding: 0; margin: 0;
}
app-public-home-header {
display: block;
width: 100%;
height: 200px;
background: #eee;
}
smart-splitter {
width: 100%;
height: 100%;
}
Hope this helps.
Best Regards,
B. Markov