readysettygo
04-29-2003, 03:24 AM
How do you add more than 1 space between 2 words? For example, if i wanted to add 3 spaces between the two words i wrote.
|
View Full Version : Adding spaces Between WoRds readysettygo 04-29-2003, 03:24 AM How do you add more than 1 space between 2 words? For example, if i wanted to add 3 spaces between the two words i wrote. pb&j 04-29-2003, 03:36 AM perhaps use the space code? &nbsp; or three... &nbsp;&nbsp;&nbsp; readysettygo 04-29-2003, 03:51 AM Thank you. angelivion 04-29-2003, 08:38 AM or maybe, using CSS like: body {letter-spacing: 4px; } Hope that helps. the_dark_one02 04-29-2003, 05:47 PM hey is there any oher way of spaces other than &n bsp; ??? coz the way i use em my code is hard to read pb&j 04-29-2003, 07:27 PM i don't know how supported it is, but try word spacing with css. this is placed in the HEAD area of your coding... <style type="text/css"> body,p,td {word-spacing: 5em;} </style> or make it into a class or so on... (visit the css section for different varieties) the_dark_one02 04-29-2003, 07:47 PM ok thanks but that wasnt wuite what i was looking for. what i ment was like a tab sized code. coz all that ll do is put 5px between each word Xiphias 04-29-2003, 08:33 PM then what are you talking about? the_dark_one02 04-29-2003, 08:42 PM what i mean is like how nbsp; makes a space is there anything to make a tab sized space pb&j 04-29-2003, 10:09 PM between all (each) of the words or just before the starting one in a paragraph? the_dark_one02 04-30-2003, 02:37 PM at the begining of a line or in between them for example: (tab)blah (tab)(tab)blah (tab)blah(tab)blah that sort of thing pb&j 04-30-2003, 04:25 PM perhaps create a transparent image in the desired size and putting that into the spaces? either that or the &nbsp; thing is the text alternative. (this is considering you want the spacing to be in different forms.) the_dark_one02 04-30-2003, 06:26 PM hey thanx i never thought of using the spacer.gif thnx for reminding me. |