vote up 2 vote down star
1

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?

flag

77% accept rate

4 Answers

vote up 5 vote down check

You could try nowrap.

<td style="white-space:nowrap;">Hello - World</td>

or

<td nowrap>Hello - World</td>
link|flag
vote up 4 vote down

Use this CSS:

.nowrap {
    white-space: nowrap;
}

Wrap your dates like: <span class="nowrap">2009-01-01</span>.

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.

link|flag
vote up 3 vote down

I'm sure there's a better CSS way but the old way is with a no-break: <nobr>...</nobr> but using no-break will cause nothing to go to the next line.

Another way is to use a Non-breaking hyphen. This way, you can still get wrapping, just not at the hyphen.

link|flag
1  
Non-breaking hyphen is the way to go. +1 – Borgar Oct 14 at 23:24
vote up 1 vote down

You could give the table cell a width that's bigger than the width of the datestring.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.