Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a line made of inputs and spans which should represent a phone number. Inserting it into a table with some columns with content causes the line to break:

broken line

The last input is pushed into the next line. One way to fix this could be setting a fixed td width or min-width. However, for the sake of any future projects I would like to know is there a way to make the html content unbreakable without touching the td width. Thanks for any info.

share|improve this question
2  
why would you put every digit in a seperate input ? – EvilP Feb 20 '12 at 13:35
Because I was requested to do so :). – Przemek Feb 21 '12 at 8:56

3 Answers

up vote 6 down vote accepted

Add this CSS to the td

white-space: nowrap;

This prevents the automatic line-breaking of HTML. For more info see MDN

share|improve this answer
Thank you all for your fast responses, sadly I can accept only one of them. I accepted @Sirko's one because of the link to MDN which makes this answer a little more complete. – Przemek Feb 21 '12 at 8:58

add

white-space: nowrap;

to your css

share|improve this answer

Using white-space: nowrap should get the job done.

share|improve this answer

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.