目录

style tabSize 属性

示例

设置 <pre> 元素的 tabSize:

document.getElementById("myPRE").style.tabSize = "16";
亲自试一试 »

描述

tabSize 属性指定用于制表符的空格长度。

在 HTML 中,制表符通常显示为单个空格字符,但某些元素除外,例如 <textarea> 和 <pre>,并且 tabSize 属性的结果仅对这些元素可见。


浏览器支持

Property
tabSize Yes 79.0 Not supported
Use MozTabSize
6.1 15.0

语法

返回 tabSize 属性:

object.style.tabSize

设置 tabSize 属性:

object.style.tabSize = "number| length|initial|inherit"

属性值

Value Description
number Default value 8. Specifies the number of space-characters that should be displayed for each tab-character
length Specifies the length of a tab-character. This property value is not supported in any of the major browsers
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

技术细节

默认值: 8
返回值: 一个字符串,表示元素的 tab-size 属性
CSS版本 CSS3

相关页面

CSS 参考:制表符大小属性