white-space

Previous- display  |  Next-list-style-type

Description

The white-space property will determine how spaces within the element are treated. This property takes one of three values.

normal (collapses multiple spaces into one), pre (does not collapse multiple spaces) , nowrap (does not allow line wrapping without a <BR> tag)


Initial Value : normal

Applies to : block-level and replaced elements

Inherited : yes

Possible Values
normal | pre | nowrap | inherit

Example(s)
pre        { white-space: pre }
p          { white-space: normal }
td[nowrap] { white-space: nowrap }

Previous- display  |  Next-list-style-type