Code for 'tab'

liunx

Guest
Is there a code for the equivalent of 'tab' like a 'non breaking space' is '&*nbsp;' (without the *, I can't turn on html code) and if so what is it.<br />
<br />
Thanks.<br />
<br />
Nick<!--content-->the numeric entity for a tab is &amp#09;<br />
<br />
but it should have no affect on an html page (except in input type text fields of forms) browsers do not parse tabs, newlines, line feeds, carraige returns, or extra white space.<!--content-->If you are looking to indent the first line in a paragraph, then you want to use text-indent:<br />
p{ text-indent: 20px; }<br />
That seems to work fine in IE6 and Mozilla.<!--content-->
 
Back
Top