x
 
<!DOCTYPE html>
<html>
<head>
<style> 
#t1 {
  -moz-tab-size: 4; /* Firefox */
  tab-size: 4;
}
#t2 {
  -moz-tab-size: 16; /* Firefox */
  tab-size: 16;
}
</style>
</head>
<body>
<h1>tab-size 属性</h1>
<pre id="t1">
I   use tab-size    4
</pre>
<pre id="t2">
I   use tab-size    16
</pre>
<p><b>注释:</b>Firefox 支持替代的 -moz-tab-size 属性。</p>
</body>
</html>