I'm trying to find out how the flex-inline works; how do I go about having it expand height to 100% and touch the bottom of the screen, without filling it full of stuff.
html,body{margin:0;padding:0}
body{background:black;}
#sidebar{
display: inline-flex ;
flex-direction: column;
border:5px solid blue;
background:white;
width:20%;
text-align:center;
list-style: none;
}
span {color:blue;
position:relative;
}
<body>
<div id=sidebar>
<li>Test</li>
<li>Test</li>
<li>Test</li>
<li>Test</li>
<li>Test</li>
</div>
<span>hello</span>
</body>