Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HTML or hex code for a half space?

Status
Not open for further replies.

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?





 
No unless you can find a font that contains a half-space character and use that. Something like this:
Code:
<span style=&quot;font-family: SomeFont&quot;>&#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

Meddle not in the affairs of dragons,
For you are crunchy, and good with mustard.
 
Try this:

<spacer height=&quot;1px&quot; width=&quot;1px&quot; type=&quot;block&quot;>

Just set it to the values you want.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top