My issue is specific to Internet Explorer. I am using the GridView control with a column displaying months (Dec-2011, Jan-2012, etc). In Firefox, they appear on one line as intended:
Jan-2012However, in IE, it breaks them up like this:
Jan- 2012The CSS for the TD (cell) looks like this:
.grid .datatable .row TD
{
font-size:11px;
text-align:center;
font-weight:bold;
padding:6px 4px;
}
How can I make it work consistently across IE and Firefox?
(Unfortunately, I cannot provide screenshots as I am new here.)