No but if there are multiple spaces you can preserve them without by enclosing the text in <pre> </pre> which will retain the formatting
Cd&
Main Topics
Browse All TopicsIs there any tag in HTML to represent a tab?. I don't wish to specify   8 times. (Assuming user has set tab = 8 spaces)
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
What about CSS guys???
----------
<html>
<head>
<title>nothing to see here</title>
<style type="text/css">
.tabOne {
text-indent: 40pt;
}
</style>
</head>
<body>
<p class="tabOne">
Here is a paragraph with one tab<br>
on the leading line. Every subsequent<br>
line is leftmost.
</p>
</body>
</html>
----------
Change the pt size to suit your tastes (can also be px, em, ex, or %).
-corey
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) ;-)
Business Accounts
Answer for Membership
by: a.marshPosted on 2001-07-30 at 14:19:20ID: 6335919
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