<html>
<link rel="stylesheet" href="josh.css">
<body bgcolor="#FFFFFF">
<div id="Description">
			<table cellpadding="0" cellspacing="0" border="0" width="100%" class="main">
				<tr><td valign="top" class="name">white-space</td><td valign="top" nowrap class="compatibility">NN <span class="emphasis">4</span> IE <span class="emphasis">5(Mac)/5.5(Win)</span> CSS <span class="emphasis">1</span></td>
				</tr>
				<tr>
					<td colspan="2" class="divider"><img src="dwres:18084" width="100%" height="1"></td>
				</tr>
				<tr>
					<td valign="top" nowrap class="usage"><p class="literal"></p>
					</td><td valign="top" nowrap class="requirements">Inherited: Yes</td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="description"><p>Sets how the browser should render whitespace (extra character spaces
and carriage returns) that is part of the element's
source code. Under normal circumstances, HTML ignores extra
whitespace and thus collapses the rendered content around such space.
For example, only single spaces are preserved between words, and
<span class="literal">br</span> elements are required to force a line break
within a paragraph. A whitespace attribute setting of
<span class="literal">pre</span> treats whitespace as if you had surrounded the
element in a <span class="literal">pre</span> element. Although browsers have a
tradition of rendering <span class="literal">pre</span> elements in a monospace
font, the look of an ordinary element set to
<span class="literal">white-space:pre</span> preserves its font
characteristics.
</p>
					</td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="csssyntax"><span class="title">CSS Syntax</span></td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
				</tr>
				<tr>
					<td><span class="programlisting"><pre>white-space: <span class="replaceable">whiteSpaceType</span></pre>
						</span></td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="value"><span class="title">Value</span></td>
				</tr>
				<tr>
					<td><p>One of three constants: <span class="literal">normal</span> |
<span class="literal">nowrap</span> | <span class="literal">pre</span>. A value of
<span class="literal">normal</span> allows regular HTML treatment of whitespace
to rule. A value of <span class="literal">nowrap</span> (not available in
Navigator 4) tells the browser to ignore line breaks in the source
text (in case the author breaks up lines for readability in the
editor) and break them on the page only where there are explicit HTML
line breaks (with a <span class="literal">br</span> element, for example). A
value of <span class="literal">pre</span> has the browser honor all whitespace
entered by the author in the source content, without adjusting any
font settings of the element.
</p>
					</td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="initvalue"><span class="title">Initial Value</span></td>
				</tr>
				<tr>
					<td><p><span class="literal">normal</span></p>
					</td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="example"><span class="title">Example</span></td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
				</tr>
				<tr>
					<td><span class="programlisting"><pre>div.example {white-space: pre}</pre>
						</span></td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="CLEARSEPARATION">&nbsp;</td>
				</tr>
				<tr>
					<td valign="top" colspan="2" class="appliesto"><span class="title">Applies To</span></td>
				</tr>
				<tr>
					<td><p>All elements. </p>
					</td>
				</tr>
			</table>
		</div>

</body>
</html>