Link to home
Start Free TrialLog in
Avatar of hipal
hipalFlag for United States of America

asked on

tab space in html

Hi,

I want to add 5/10 spaces in html at a lot of places. What is the better alternative using css or otherwise .. instead of writing   so many times :(

Please reply .. thanks !
ASKER CERTIFIED SOLUTION
Avatar of jimyX
jimyX

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of hipal

ASKER

Using pre still I have to write  nbsp   :(
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jimyX
jimyX

Not actually. If you used it this way:

<PRE>hipal     hipal</PRE>

Then you will get your five spaces between the two words.
Avatar of hipal

ASKER

I do not want to use pre ..becoz I want to give spaces in my list items .. where pre is not working ..

or may be I am doing something wrong
Avatar of hipal

ASKER

Can someone please elaborate more on padding-right:5em thing ..

If you are using CSS, I would suggest the following:

p:first-letter { text-indent:1em; }

This will indent the first line like in traditional publications.
Avatar of hipal

ASKER

no I want to give 5 spaces at random places and not just start or a fix place ..

thanks for reply though :(
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial