Click here to view my example.
I have encountered an issue where if you have two table columns, one with taller content than the other, then divs inside the shorter column do not expand to match the height of the first column, even with a height set to 100%. Is there a way to achieve this layout behavior using CSS?
<table>
<tr>
<td class="one">
<ul>
<li>fasdf</li>
<li>asgasdf</li>
<li>afdsaggrea</li>
<li>asgasdf</li>
<li>afdsaggrea</li>
</ul>
</td>
<td class="two">
<div class="three">
First div
<div>
Second div
</div>
</div>
</td>
</tr>
</table>
In the jsfiddle example I have provided, the desired behavior is for the green box to fill the entire yellow box.