Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I want to make the spacing between text lines bigger: eg from : this is my book to: this is my book what is the code to do that?
Use the line-height CSS attribute. Example:
line-height
<div style="line-height: 2em;"> Double-spaced text goes here... </div>
- Mike