Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this problem with tables from my app. When the description of a td from tr is very large this is pushing my th name on more lines. Is possible to set for tr th a height for example 10 px in order to not be modified on many lines when td description is very large?

check my fiddle: http://jsfiddle.net/ebG9N/40/

share|improve this question

1 Answer

up vote 2 down vote accepted

Yes, add the following bit of code to your CSS:

th { white-space:nowrap; }

Which is basically the equivalent of:

<span>Start&nbsp;date&nbsp;Column</span> <!-- &nbsp; = non-breaking space -->

Both methods ensure that the TH contents are not wrapped onto two lines.

share|improve this answer
Wow, thank's a lot man. – burebistaruler Feb 17 '12 at 10:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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