The tab-size property specifies the length of the space used for the tab character.In HTML, the tab character is usually displayed as a single space-character, except for some elements, like and , and the result of the tab-size property will only be visible for these elements. Syntax tab-size: number|length|initial|inherit; Example pre {-moz-tab-size: 16;} /* Code for Firefox */pre {-o-tab-size: 16;} /* Code for Opera 10.6-12.1 */pre {tab-size: 16;} Output / Return Value Limitations Alternatives / See Also Reference
, and the result of the tab-size property will only be visible for these elements.
tab-size: number|length|initial|inherit;
pre {-moz-tab-size: 16;} /* Code for Firefox */pre {-o-tab-size: 16;} /* Code for Opera 10.6-12.1 */pre {tab-size: 16;}