Possible Duplicate:
Specifying Tab-Width?
I need to print a tab character in a pre tag. The HTML character for tab is 	 but on all browsers I tried it renders to look like 8 spaces.
Is there a way to adjust this to render to be the width of 4 spaces or is there another HTML character I can use that is 4 spaces?
While I agree with the first answer that you might as well just put 4 spaces, there does seem to be some support for a
tab-sizeproperty within CSS (though IE support is lacking):Only effective using
white-space: preorwhite-space: pre-wrap(or within<pre>tags).