100% height issue
See original GitHub issueI’m using your library in a Flex project and platform.css (now layout-flex) but it’s don’t works. I must remove hight :100% from splitArea e splitGutter. Without these, now it’s working
<div style="position: absolute;top:50px;bottom:0;right:0;left:0">
<div layout="row" layout-fill>
<div layout="column" layout-fill>
<split [direction]="'horizontal'" [gutterSize]="8">
<split-area [size]="25" [order]="1">
<p>Test</p>
</split-area>
<split-area [size]="75" [order]="2">
<split [direction]="'vertical'" [gutterSize]="8">
<split-area [size]="50" [order]="1">
<p>Top Content</p>
</split-area>
<split-area [size]="50" [order]="2">
<p>Bottom Content</p>
<p>Bottom Content</p>
<p>Bottom Content</p>
<p>Bottom Content</p>
<p>Bottom Content</p>
<p>Bottom Content</p>
<p>Bottom Content</p>
<p>Bottom Content</p>
</split-area>
</split>
</split-area>
</split>
</div>
</div>
</div>
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:11 (1 by maintainers)
Top Results From Across the Web
Why doesn't height: 100% work to expand divs to the screen ...
An issue with this approach is that iPhones excludes the address bar and bottom navigation from the view height, which means body {...
Read more >100% height not working - CSS-Tricks
If you have a bunch of stuff in your document, like say this page, then the document/html/body height will be greater than the...
Read more >CSS: Do not put height 100% on html, body in 2020
When some content or div need to be 100% height of the window some people may tell you to add height 100% to...
Read more >css - height % does not work - OutSystems
Height % is based on it's parent (so you have to set every element above the target element to 100%) , there are...
Read more >Div not filling all the body when height=100% - SitePoint
When the content isn't long it works correctly, however when I make it a little longer, the div turns out to be not...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

As a workaround, you can set the gutter height to its initial height in your application’s css.
split-gutter { height: initial !important; }EDIT: For version 1.0.3 (at least), you can use the following instead:
as-split-gutter { height: initial !important; }Thank you @digitalcoyote 😃 for response, I got the idea.
In complex , applications the parent component needs to have height set explicitly. then if we give height in % that works fine.
Thanks you again @digitalcoyote.
And thank you @bertrandg for this awesome plugin. and updating it when i needed it mostly.