合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
[CSS参考手册](http://css.doyoe.com/)»[属性列表](#)»[文本属性](#)» 相关内容: [**其它文本属性参考**选择其它项](#) - [text-indent](#) - [text-overflow](#) - [text-align](#) - [text-transform](#) - [text-decoration](#) - [text-decoration-line](#) - [text-decoration-color](#) - [text-decoration-style](#) - [text-shadow](#) - [text-fill-color](#) - [text-stroke](#) - [text-stroke-width](#) - [text-stroke-color](#) - [letter-spacing](#) - [word-spacing](#) - [vertical-align](#) - [word-wrap](#) - [white-space](#) - [direction](#) - [unicode-bidi](#) - [line-height](#) - [tab-size](#) # text-indent - **版本:CSS1** - 继承性:有 ### 语法: **text-indent**:[<length>](#) | [<percentage>](#) **默认值**:0 ### 取值: [<length>](#):用长度值指定文本的缩进。可以为负值。[<percentage>](#):用百分比指定文本的缩进。可以为负值。 ### 说明: **检索或设置对象中的文本的缩进。** - 内联对象要使用该属性必须先使该对象表现为块级或内联块级。 - 对应的脚本特性为**textIndent**。 ### 兼容性: - 浅绿 = 支持 - 红色 = 不支持 - 墨绿 = 部分支持 - 橙色 = 实验性质 | [支持版本](# "查看本文档测试时所用浏览器版本")\类型 | IE | Firefox | Safari | Chrome | Opera | |-----|-----|-----|-----|-----|-----| | 版本 | 6.0 | 4.0 | 5.1 | 13.0 | 11.50 | ### 示例: - **内联元素span** 看看我的左边有没有30px的缩进 span{text-indent:30px;} - **被设置为内联块级元素的span** 看看我的左边有没有30px的缩进 span{display:inline-block;text-indent:30px;} - **被设置为块级元素的span** 看看我的左边有没有30px的缩进 span{display:block;text-indent:30px;} Copyright © 2006-2012 [Doyoe](http://www.doyoe.com/). All Rights Reserved