Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

tab-size

这篇翻译不完整。请帮忙从英语翻译这篇文章

这是一个实验中的功能
此功能某些浏览器尚在开发中,请参考浏览器兼容性表格以得到在不同浏览器中适合使用的前缀。由于该功能对应的标准文档可能被重新修订,所以在未来版本的浏览器中该功能的语法和行为可能随之改变。

CSS 属性 tab-size 用于自定义制表符 (U+0009) 的宽度。

初始值8
适用元素block containers
是否是继承属性yes
适用媒体visual
计算值the specified integer or an absolute length
是否适用于 CSS 动画
正规顺序the unique non-ambiguous order defined by the formal grammar

语法

/* <integer> values */
tab-size: 4;
tab-size: 0;

/* <length> values */
tab-size: 10px;
tab-size: 2em;

/* Global values */
tab-size: inherit;
tab-size: initial;
tab-size: unset;

<integer>
制表符对应的空格数。必须为非负值。
<length>
制表符的宽度。必须为非负值。

正式语法

<integer> | <length>

示例

pre {
  tab-size: 4; /* 将制表符设为 4 个空格 */
}
pre {
  tab-size: 0; /* 移除缩进 */
}
pre {
  tab-size: 99; /* 不要使用制表符! */
}

规范

Specification Status Comment
CSS Text Level 3
tab-size
Working Draft Initial definition

浏览器兼容性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 21 4.0 (2.0)-moz 未实现

10.60-o
15

6.1
<length> 42 未实现[1] 未实现 未实现 未实现
Feature Safari Mobile Opera Mini Opera Mobile Android
Basic support 7.1 5-o 11.5-o
24
4.4

[1] Gecko 尚未实现。见 bug 943918

参考

文档标签和贡献者

 此页面的贡献者: Sebastianz, luobotang
 最后编辑者: Sebastianz,