How to set tabulation length in CSS? asked Oct 21, 2020 in CSS by Pantycle_Genefanty (12.7k points) recategorized Oct 21, 2020 by Pantycle_Genefanty 0 like 0 dislike 13 views How I can to set tabulation length in CSS? set tabulation length css css tabulation length Your comment on this question: Your name to display (optional): Email me at this address if a comment is added after mine:Email me if a comment is added after mine Privacy: Your email address will only be used for sending these notifications. Anti-spam verification: To avoid this verification in future, please log in or register. 1 Answer 0 like 0 dislike answered Oct 21, 2020 by Pantycle_Genefanty (12.7k points) Use CSS property tab-size so like this: For set tab size to 4 characters wide: pre {tab-size: 4;} For remove indentation: pre {tab-size: 0;} Or length values: pre {tab-size: 10px;} pre {tab-size: 2em;} Your comment on this answer: Your name to display (optional): Email me at this address if a comment is added after mine:Email me if a comment is added after mine Privacy: Your email address will only be used for sending these notifications. Anti-spam verification: To avoid this verification in future, please log in or register.