How do I create tab indenting in html
问题 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 回答1: Ye gods, tables? Looks like an obvious use-case for lists, with variable margin and list-style-type: none; seasoned to taste. 回答2: The simplest way I can think of would be to place the text in nested divs.