'word-spacing' Example : word spacing « CSS Attributes and Javascript Style Properties « HTML CSS Reference

Home
HTML CSS Reference
1.CSS Attributes and Javascript Style Properties
2.HTML Attributes Reference
3.HTML Tag Reference
HTML CSS Reference » CSS Attributes and Javascript Style Properties » word spacing 
'word-spacing' Example

    
<html>
<body>
<div id="myD" 
     style="width:300px; background-color:beige;">
This is a sample paragraph.
This is a sample paragraph.
This is a sample paragraph.
This is a sample paragraph.
This is a sample paragraph.
This is a sample paragraph.
This is a sample paragraph.
This is a sample paragraph.
This is a sample paragraph.
This is a sample paragraph.
</div>
<br>
<input type="button" 
       value="Set wordSpacing property to 10px" 
       onclick="myD.style.wordSpacing='10px'">

<input type="button" 
       value="Set wordSpacing property to 0.5cm" 
       onclick="myD.style.wordSpacing='0.5cm'">

<input type="button" 
       value="Set wordSpacing property to normal" 
       onclick="myD.style.wordSpacing='normal'">
</body>
</html>

    
      
      
Related examples in the same category
1.'word-spacing' Syntax and Note
2.'word-spacing' Possible Values
3.'word-spacing' is applied to
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.