CSS的text-indent属性_html/css_WEB-ITnose

WBOY
Release: 2016-06-21 09:07:21
Original
1878 people have browsed it

text-indent属性的定义和用法:

检索或设置对象中的文本的缩进。 

内联对象要使用该属性必须先使该对象表现为块级或内联块级。 

对应的脚本特性为textIndent

语法结构:

text-indent:<length>|<percentage>
Copy after login

取值:

:用长度值指定文本的缩进,可以为负值。

:用百分比指定文本的缩进,可以为负值。

浏览器支持:

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>
Copy after login

以上代码也可以说明此属性具有继承性。

原文地址是:http://www.51texiao.cn/div_cssjiaocheng/2015/0606/3411.html

最为原始地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=1330


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template