Jan 28, 2002 #1 Ineedjava Technical User Apr 14, 2001 21 US If & nbsp places a space on a web page, is there a code for placing a half-space on a web page?
Jan 29, 2002 #2 tsdragon Programmer Dec 18, 2000 5,133 US No unless you can find a font that contains a half-space character and use that. Something like this: Code: <span style="font-family: SomeFont">&#xx;</span> SomeFont is the font you want to use, xx is the ascii numeric number of the half-space character. Tracy Dryden tracy@bydisn.com http://www.bydisn.com Meddle not in the affairs of dragons, For you are crunchy, and good with mustard. Upvote 0 Downvote
No unless you can find a font that contains a half-space character and use that. Something like this: Code: <span style="font-family: SomeFont">&#xx;</span> SomeFont is the font you want to use, xx is the ascii numeric number of the half-space character. Tracy Dryden tracy@bydisn.com http://www.bydisn.com Meddle not in the affairs of dragons, For you are crunchy, and good with mustard.
Jan 30, 2002 #3 mithrilhall Programmer Jul 27, 2001 635 US Try this: <spacer height="1px" width="1px" type="block"> Just set it to the values you want. Upvote 0 Downvote
Try this: <spacer height="1px" width="1px" type="block"> Just set it to the values you want.