Reputation: 2597
How to force in twitter bootstrap show text inline with overflow
? For example in http://jsfiddle.net/nonamez/jJdX4/ overflow
is working except the inline words. In my code nothing works.
Upvotes: 0
Views: 61
Reputation: 3038
Use white-space
and set it to nowrap
which will make text go into one line until a break is reached.
li {white-space:nowrap;}
Upvotes: 1