I've read through plenty of related articles on this site and others and it seems I'm still missing something pretty basic.
I have a parent div and an unordered list. The div has a set height and I want to list items to be inline-line and on the bottom of the parent div.
Thanks!
Fiddle: http://jsfiddle.net/np2qm6rz/1/
<div class="parent">
<ul>
<li> Item 1 </li>
<li> Item 1 </li>
<li> Item 1 </li>
<li> Item 1 </li>
</ul>
</div>
.parent {
border: 1px solid lime;
height: 100px;
}
ul {
border: 1px solid black;
}
li {
border: 1px solid red;
display: table-cell;
vertical-align: bottom
}