In a td, I am dealing with dynamic content that, when too long, causes the cell to ignore the set height and stretch. This issue seems to be isolated to ie9.
Below is my CSS code:
table tr {
min-height: 58px;
height: 58px; overflow:hidden!important;
}
table td {
border-right: 1px solid #CCCCCC;
border-bottom: 1px solid #CCCCCC;
padding: 0 15px 0 15px; overflow:hidden!important; height: 58px; white-space:wrap;
}
I'm uncertain about how to resolve this. Any ideas?