i have 4 links of equal height that should be vertically spaced according to the height of your browser window, so the spacing in between them will vary if you increase or decrease the height of your browser window.
i was thinking of a layout like this question, but i want the divs (in my case, links) to be vertically stacked.
i have no clue how to do this so my code is pretty basic. here's a fiddle i guess? i would prefer a css-only solution, but if this can only be achieved via javascript or something, please give me an explanation! i am very bad at js.
#links {
position:fixed;
height:100%;
width:150px;
left:65px;
background:lightslategrey; }
#links a {
text-decoration:none;
position:relative;
display:inline-block;
padding:5px;
height:25px;
width:100%;
margin-bottom:10px;
color:white;
text-align:center;
font:25px consolas; }