I have logn string which doesn't fit into table cell. Actually string is a single long word.

Is it possible using css only to wrap such long word?

I have:

|klasdflksadjflsadkfj;lasdkfj;lsdkfjldskfjlsadkfj;lsdkfjklsajdf|

I want:

|klasdflksadjflsadkfj;lasdkfj;lsd|
|kfjldskfjlsadkfj;lsdkfjklsajdf  |
link|improve this question

62% accept rate
feedback

2 Answers

up vote 3 down vote accepted

you need:

 word-wrap: break-word

in CSS3;

for a cross-browser solution you need to alter the text in the cell (with javascript) and add some breaks.

link|improve this answer
"or a cross-browser solution..." This would appear to be one of those places where the spec is chasing existing practice. The above works in IE6 and up, and current versions of Chrome, Firefox, Opera, and Safari. You may need to use the vendor-specific versions (e.g., -ms-word-wrap) if you're in a strict standards mode. – T.J. Crowder Mar 17 '11 at 12:19
@T.J Crowder: mind the word table-cell in the question... :) jsfiddle.net/tDUvf – Caspar Kleijne Mar 17 '11 at 12:26
Blast. ;-) – T.J. Crowder Mar 17 '11 at 12:38
feedback

You can use word-wrap:break-word according to caniuse.com this property has good browser support.

link|improve this answer
Why's this been voted down? – warmanp Mar 17 '11 at 14:48
feedback

Your Answer

 
or
required, but never shown

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