Is ‘tab-size’ supported?

by David Storey

HTML

<pre><code>pre {
&#9;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;
}