Forum Moderators: mack

Message Too Old, No Replies

spacing between words

other spacing than  

         

pfrpwr

3:30 am on Jan 19, 2004 (gmt 0)

10+ Year Member



Is there a better way to make a lot of spaces between words than a lot of &nbsp?

robert adams

6:13 am on Jan 19, 2004 (gmt 0)

10+ Year Member



you can use an image tag and give it a certain size
img src="" width="20 height="20" or whatever.

luck
robert

Krapulator

6:14 am on Jan 19, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You could use css to add some padding.

A very rough example would be

<style>
.spacing {padding-left:80px;}
</style>

<p>Spaced <span class="spacing">Words</span></p>

benihana

10:09 am on Jan 19, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



you could use the word-spacing in css:


.myclass {
word-spacing: 16px;
}

not sure about compatability across browsers though...
ben

pfrpwr

2:05 pm on Jan 19, 2004 (gmt 0)

10+ Year Member



Thanks everyone.

I'll try all and let you know which works best for what I'm trying to do.