I have some table cells containing dates formatted like this: 2009-01-01. I.E 7 seems to be breaking these into two lines at the hyphen. Is there any way to turn this off?
|
|
You could try nowrap.
or
|
||
|
|
|
|
Use this CSS:
Wrap your dates like: Edit: the advantage of this solution over others is that it gives you more precise control over what should or should not wrap. Your cells may still wrap for spaces and other hyphens, outside the span. |
|||
|
|
|
|
I'm sure there's a better CSS way but the old way is with a no-break: Another way is to use a Non-breaking hyphen. This way, you can still get wrapping, just not at the hyphen. |
||||
|
|
|
You could give the table cell a width that's bigger than the width of the datestring. |
||
|
|
