How do I create tab indenting in html
html, xhtml
Solution
Ye gods, tables?
Looks like an obvious use-case for lists, with variable margin and list-style-type: none; seasoned to taste.
Problem
I have a situation as follows <body> Test<br /> test<br /> test1<br /> </body> I need to add a tab after the 2nd test and 3rd test so that it looks similar to this. Test test test1 Is there a special HTML entity or special character for TAB. eg. Non-breaking space == & nbsp ; thanks