CSS white-space
Also see the full, alphabetical list of CSS properties
The CSS white-space property is used to control whitespace. This is can be used to prevent unwanted wrapping. This property can be thought of as the CSS equivalent of the NOWRAP and PRE tags in HTML.
| Syntax: | white-space: <value> |
| Possible Values: |
|
| Initial Value: | normal |
| Applies to: | Block level elements |
| Inherited: | Yes |
| Media: | Visual |
| Example: |
.nowrap { white-space: nowrap }
|

