text help

liunx

Guest
i need to put a large space inbetween my text however space bar doesnt work obviously how do i put a large space between my text is there another code <br />
<br />
<br />
example:<br />
<br />
text text<br />
<br />
<br />
<br />
thanx<!--content-->&nbsp; is the code for a space character<!--content-->you can use the code n8thegreat posted, which is the non-breaking space character, but it will not break to a newline, which can sometimes be a bother. Or you can use CSS:<br />
<br />
text text <span style="word-spacing:100px;">text text</span> text text<br />
<br />
which will break to a newline if that is a consideration.<!--content-->
 
Back
Top