I have some statistical data that I want to look neat, for example Name Michael Jordan Team(s) Chicago Bulls, Wizards Years Active 1984-2002 now when I try and do this in html/css, how do I put space between the words, like in the above example, between Name and Michael Jordan. ? Thanks edit: In the Preview of this page, you can see what I mean.
Here try this. Tell me if it works. <p> Name Michael Jordan<br /> Team(s) Chicago Bulls, Wizards<br /> Years Active 1984-2002<br /> </p>
I just posted the code on my website and <p> text here </P> worked fine for me it puts spaces inbetween the words but only 1 space.
<p><span style="padding-right:20px">Name</span>Michael Jordan</p> HTML: or You can also do in this way: Name Michael Jordan HTML: = space
ok i think i know what you mean... give this a crack Name%20Michael%20Jordan Team(s)%20Chicago%20Bulls,%20Wizards Years%20Active%201984-2002 Fiddle around with %20 or .. hmm i know what your on about... its the same as a php script for space, if it springs to mind i'll reply again