I have a html table and inside a cell i have a div
<td>
<div class=content>some content</div>
</td>
<td>
<div class=content>some content<br/>some content<br/>some content<br/></div>
</td>
some of the content in certain cells are multiple lines and the div has a background color so I want the view to be uniform so I want the divs with less content to still be the same height to cover the full td.
I tried doing
.content
{
height:100%;
}
but that doesn't seem to change anything.