I am displaying some text in a TD. I have given overflow property hidden for td and this code works fine in Chrome, Safari, Mozilla but not in IE. I have used -ms- but it's also not working.
This is the code I'm using to create 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>";