I came across a design on Facebook that resembles a timeline, but I am having trouble adjusting the height of the ul element.
<ul class="timeline">...</ul>
I want the line in the middle to fill the height of the page even when there is less content present.
My goal is to make sure the 'line' fills the remaining height of the page.
.timeline:before {
top: 0;
bottom: 0;
position: absolute;
content: " ";
width: 3px;
background-color: #eeeeee;
left: 50%;
margin-left: -1.5px;
}
Adding 'height:100%;' to .timeline doesn't seem to solve the issue.
To experiment with this further, I have created a fiddle: http://jsfiddle.net/4EJNt/1/