Is ‘tab-size’ supported?
by David Storey
HTML
<pre><code>pre {
	tab-size: 16;
}</code></pre>
CSS
pre {
-webkit-tab-size: 16;
-moz-tab-size: 16;
-ms-tab-size: 16;
-o-tab-size: 16;
tab-size: 16;
}
by David Storey
<pre><code>pre {
	tab-size: 16;
}</code></pre>
pre {
-webkit-tab-size: 16;
-moz-tab-size: 16;
-ms-tab-size: 16;
-o-tab-size: 16;
tab-size: 16;
}