Within a table row, I have two cells that contain divs and the height varies due to changing content. Is there a way for one cell to take up 100% height to match the other cell?
You can see an example here.
The goal is for the second cell and its div to match the height of the first cell.
Attempts to set the height to 100% for both cells and divs have been unsuccessful.
td, div {
height:100%;
}