pre tags are super-useful for code blocks and for debugging output when writing scripts, but how do I make the text word-wrap instead of running one long line?
|
the answer, from this page
|
|||
|
|
|
|
||||
|
|
|
I suggest forget the pre and just put it in a textarea. Your indenting will remain and your code wont get word-wrapped in the middle of a path or something. Easier to select text range in a text area too if you want to copy to clipboard. The following is a php excerpt so if your not in php then the way you pack the html special chars will vary ...
For info on how to copy text to the clipboard in js see: How to Copy to Clipboard in JavaScript? . However... I just inspected the stackoverflow code blocks and they wrap in a <code> tag wrapped in <pre> tag with css ...
Also the content of the stackoverflow code blocks is syntax highlighted using (I think) http://code.google.com/p/google-code-prettify/ . Its a nice setup but Im just going with textareas for now. Rgds, Eugene. |
|||
|
|
|
You can either:
to maintain the monospace font but add word-wrap, or:
which will allow a fixed size with horizontal scrolling for long lines. |
|||
|
|
|
Try using
Or better throw CSS. |
|||||||
|