Specifies how the browser handles space characters in the HTML code. By default words with more than one space between them will display as having only one space. Using the pre value will display text including the exact same white space character as the HTML code. Also to prevent the browser fro wrapping the text use the value nowrap.
white-space: pre;
IE5.5+, FF1+, SA1.3+, OP9.2+
| normal | Sets the default value. |
| nowrap | Text wrapping is turned off. |
| pre | White space is preserved. |