In an effort to display text in a TD, I've implemented the overflow property set to hidden for the td element. Surprisingly, this code works flawlessly in Chrome, Safari, and Mozilla browsers, but unfortunately falls short in IE. Despite attempting to use -ms- prefixes, the issue still persists.
Below is the snippet of code that generates the table row:
strRowTd += "<tr><td height=\"20\" style=\"-ms-display: block;" +
"display: block;overflow:hidden;-ms-overflow:hidden;\" " +
"class=\"body_text_white_mid\">" +
"<strong>" + data[i + 1][4] + "</strong>";
strRowTd += "</td></tr>";