How can text like "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" which exceeds the width of a div (say 200px) be wrapped?
I am open to any kind of solution such as CSS, jQuery, et cetera.
|
|
|
Try this:
|
|||||||||||||||
|
|
You can use a soft hyphen like so:
This will appear as |
|||||||||||||||||||
|
} The 'word-wrap' solution only works in IE and browsers supporting CSS3. The best cross browser solution is to use your server side language (php or whatever) to locate long strings and place inside them in regular intervals the html entity e.g.
|
|||||||||
|
|
Add this CSS to the paragraph.
|
|||||
|
|
The only one that works across IE, Firefox, chrome, safari and opera if there are no spaces in the word (such as a long URL) is:
I found this to be bullet-proof. |
||||
|
|
|
Use
|
|||||
|
|
A server side solution that works for me is: |
|||||
|