W3Schools.com

Style whiteSpace Property

Style Object Reference Style Object

Definition and Usage

The whiteSpace property sets or returns how to handle tabs, line breaks and whitespace in a text.

Syntax

Set the whiteSpace property:

Object.style.whiteSpace="normal|nowrap|pre|inherit"

Return the whiteSpace property:

Object.style.whiteSpace

Value Description
normal Collapses sequences of whitespace, and breaks lines automatically. This is default
nowrap Collapses sequences of whitespace, but does not allow line breaks
pre Line breaks and other whitespace are preserved
inherit The value of the whiteSpace property is inherited from parent element


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The whiteSpace property is supported in all major browsers.


Example

Example

Preserve line breaks and whitespaces in the text:

<html>
<head>
<script type="text/javascript">
function displayResult()
{
document.getElementById("div1").style.whiteSpace="pre";
}
</script>
</head>
<body>

<div id="div1">
This is so    me text. This is some tex   t. This is some
text. This is some text. This is some text. This is some text.
</div>
<br />

<button type="button" onclick="displayResult()">Preserve whitespace/line breaks</button>

</body>
</html>

Try it yourself »


Style Object Reference Style Object
WEB HOSTING
Best Web Hosting
PHP MySQL Hosting
Best Hosting Coupons
UK Reseller Hosting
Cloud Hosting
Top Web Hosting
$7.95/mo SEO Hosting
Premium Website Design
WEB BUILDING
XML Editor - Free Trial!
FREE Website BUILDER
Free Website Templates Free CSS Templates
Make Your Own Website
W3SCHOOLS EXAMS
Get Certified in:
HTML, CSS, JavaScript, XML, PHP, and ASP
W3SCHOOLS BOOKS
New Books:
HTML, CSS
JavaScript, and Ajax
STATISTICS
Browser Statistics
Browser OS
Browser Display
SHARE THIS PAGE