'white-space' Example : white space « CSS « HTML / CSS

HTML / CSS » CSS » white space 
'white-space' Example
  
    
<html>
<body>
<div id="myDiv" style="background:beige; width:400px;">
   Line1.<br>
   This sentence has line 1
   line 2
   and <br><br>
   line 
   <br>
   This is a regular block of text.
</div>
<br>
<button onclick="myDiv.style.whiteSpace='normal';">Set whiteSpace property to:normal</button>
<button onclick="myDiv.style.whiteSpace='pre';">Set whiteSpace property to: pre</button>
</body>
</html>

    
      
        
    
  
Related examples in the same category
1.The white-space Property
2.white-space: normal
3.white-space: pre
4.white-space:pre; white-space:nowrap;
5.white-space: nowrap, white-space: pre
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.