Maison > Article > interface Web > CSS的text-indent属性_html/css_WEB-ITnose
text-indent属性的定义和用法:
检索或设置对象中的文本的缩进。
内联对象要使用该属性必须先使该对象表现为块级或内联块级。
对应的脚本特性为textIndent。
语法结构:
text-indent:<length>|<percentage>
取值:
浏览器支持:
IE浏览器支持此属性。
火狐浏览器支持此属性。
谷歌浏览器支持此属性。
opera浏览器支持属性。
继承性:
具有继承性。
实例代码:
<!DOCTYPE html><html><head><meta charset="utf-8"><meta name="author" content="http://www.51texiao.cn/" /><title>蚂蚁部落</title><style type="text/css"> .parent{text-indent:20px;} </style> </head> <body> <div class="parent"> <div class="children">蚂蚁部落欢迎您!</div> </div> </body> </html>
以上代码也可以说明此属性具有继承性。
原文地址是:http://www.51texiao.cn/div_cssjiaocheng/2015/0606/3411.html
最为原始地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=1330