/    /  CSS White Space

CSS White Space

 

CSS White Space values:

 

  • normal – White space will collapse into a single whitespace.
  • nowrap – Never wrap to the next line and only break
  • pre(<pre>) – Text will only wrap on line breaks.
  • pre-line – Collapse into a single whitespace.
  • pre-wrap – Whitespace is preserved by the browser.
  • initial – Property to its default value.
  • inherit – Property from its parent element.

 

 

Example:

 

<!DOCTYPE html> 
<html> 
<head> 
<style> 
p { 
   white-space: nowrap; 
} 
</style> 
</head> 
<body> 
<p> 
Write some text..Write some text..Write some text.. 
Write some text..Write some text..Write some text.. 
Write some text..Write some text..Write some text.. 
Write some text..Write some text..Write some text.. 
Write some text..Write some text..Write some text.. 
</p> 
</body> 
</html>

 

OUTPUT:

 

CSS White Space