Link to home
Start Free TrialLog in
Avatar of prashant_n_mhatre
prashant_n_mhatre

asked on

Equivalent of 'TAB' in HTML

Is there any tag in HTML to represent a tab?. I don't wish to specify &nbsp 8 times. (Assuming user has set tab = 8 spaces)
Avatar of a.marsh
a.marsh

Not that I know of.

Have you perhaps considered using the <pre></pre> tags? Not that I like to use them myself.

Compare:

<p>        Eight spaces before and after.        </p>
<pre>        Eight spaces before and after.        </pre>



:o)

Ant
No but if there are multiple spaces you can preserve them without &nbsp; by enclosing the text in <pre> </pre> which will retain the formatting

Cd&
Sorry ant, didn't see your post.

Cd&
There are lots of other ways you can use to get the same effect. One common way is to use a transparent gif and resize it accordingly to "indent" text.

Ant
Just pipped you there! :oP

Great minds and all that!

:o)

Ant
Avatar of prashant_n_mhatre

ASKER

Thank you all!!!
I know <pre> and I use the same instead of &nbsp. Actually I was wondering if html supports some keyword that does the same job.
ASKER CERTIFIED SOLUTION
Avatar of coreyti
coreyti

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
The one problem I see with this is that if you're just using it to indent the first line of a paragraph it's unnecessary -- there's space after a paragraph by default, and the typography standard is either first line indent OR space after... even for print. ;-)

CSS would work, provided the browser supports that attribute. Some don't, and you can get some strange things happening in older browsers that don't have good CSS support.

If you're using it to align multiple columns, use a table. Not that the pre tag won't work, mind you. And if you're getting this text from a file that doesn't translate well into tables, pre is the easiest way to go -- in theory it would be better to put it into tables, but if you've got 20 pages of data from a report and some of the cells are multi-line entries but the data is in txt format and there are returns between them... pre works just fine. At least you can get the page done in this lifetime.. (I live in the real world too) ;-)
Thank you all. Yeah...CSS seems to be a better idea.