Alex
Alex

Reputation: 68494

CSS/HTML - wrapped long string inside a textarea?

can I make a string inside a textarea to wrap on multiple lines? (to avoid the horizontal scrollbar)

Note that I have a very long string without any spaces (a encoded text), and css word-wrap properties don't seem to work on it...

Upvotes: 0

Views: 1744

Answers (1)

The Surrican
The Surrican

Reputation: 29866

What you want is default and should work properly unless you specified the wrap=on or wrap=true (not sure which but think the first) attribute! what you need to force it is wrap=hard you can however specify predetermined breaking points using the ­ character somewhere in the word. it won't be visible, but break there. you can also have a look a some function like http://php.net/manual/en/function.wordwrap.php you can also have a look at the following css settings:

overflow: scroll; 
overflow-y: scroll; 
overflow-x: hidden; 
overflow:-moz-scrollbars-vertical;

Upvotes: 2

Related Questions