W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!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>