Robert Onslow wrote:
> I have looked everywhere for for this!
> Could someone tell me how to do it, please
>  

This is specified in the CSS. Unless the element has a
"white-space:pre;" CSS property, word wrap is turned on. The question
which is generally asked by users is therefore: how to I turn word wrap
*off*.

XHTML example:

---
p {
    display: block;
    margin: 1.33ex 0;
}

pre {
    display: block;
    white-space: pre;
    font-family: monospace;
    background-color: #EEEEEE;
    border: thin solid gray;
    padding: 2px;
    margin: 1.33ex 0;
}
---

I suspect that your problem is more subtle than what I think. Please do
not hesitate to send another email with more details about your problem.



---
PS: If you are writing Chinese, Japanese or Korean, please turn on
option "Wrap words wider than available space". The corresponding
checkbox is found in Options|Preferences, View section. See
http://www.xmlmind.com/xmleditor/_distrib/doc/help/com.xmlmind.guiutil.PreferencesEditorDialog.html#viewOptions








Reply via email to