O que significa style="white-space:nowrap"

Bom Dia Pessoal!
Trabalho com JSF e tenho uma tabela, com várias colunas como essa que mostro abaixo.
Gostaria de saber o que significa:

s:div style=“white-space:nowrap”

que está na div.
Muito obrigado.

<rich:column >
<f:facet name=“header”>
<s:span>
<h:outputText value=“Vencimento”/>
<s:span styleClass=“required”>*</s:span>
</s:span>
</f:facet>
<s:div style=“white-space:nowrap” rendered="#{index==form.PaymentCreate.paymentIndex}">
<s:decorate id=“PaymentsDateDecorate”>
<rich:calendar id=“PaymentsDate” inputStyle=“width:70px” value="#{form.PaymentCreate.calcFirstDueDate}" popup=“true” datePattern=“dd/MM/yyyy” enableManualInput=“true” required=“true”/>
</s:decorate>
</s:div>
<h:outputText size=“30” value="#{item.dueDate}" rendered="#{index!=form.PaymentCreate.paymentIndex}">
<s:convertDateTime pattern=“dd/MM/yyyy”/>
</h:outputText>
</rich:column>

Description: Selector content with a property value of 'nowrap' collapse multiple carriage returns/linefeeds and multiple spaces to a single space, but linebreaking is not controlled by the browser. They are instead controlled only by the HTML BR [--&gt;Index DOT Html] element.

http://www.blooberry.com/indexdot/css/properties/text/whitespace.htm

Ou seja, ele "trunca" vários returns ou espaços em apenas um elemento…

[]´s