is there an equivalent to the consoles special char '\t' in html ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use tables for table data. There is no standard way to tabulate data without a table (either a real table using <table> or faking it with CSS |
|||||||||
|
|
Inside the <pre> tags you can use 	 which is the unicode symbol of tabulation. But outside preformated section browser will show it as a space. |
|||
|
|
|
Other than relying on non breaking spaces, you can use a literal tab character inside of pre element, or by specifying white-space:pre as such:
|
|||||
|
|
You could use CSS's
|
|||
|
|