text-indent - CSS(层叠样式表) 编辑

text-indent 属性能定义一个块元素首行文本内容之前的缩进量。

Syntax

/* <length> 长度值 */
text-indent: 3mm;
text-indent: 40px;

/* <percentage>百分比值取决于其包含块(containing block)的宽度*/
text-indent: 15%;

/* 关键字 */
text-indent: 5em each-line;
text-indent: 5em hanging;
text-indent: 5em hanging each-line;

/* 全局值 */
text-indent: inherit;
text-indent: initial;
text-indent: unset;

Values

<length>
使用固定的<length>值来指定文本的缩进。允许使用负值。查阅可能<length> 单位。
<percentage>
使用包含块宽度的百分比作为缩进.
each-line
文本缩进会影响第一行,以及使用<br>强制断行后的第一行。
hanging
该值会对所有的行进行反转缩进:除了第一行之外的所有的行都会被缩进,看起来就像第一行设置了一个负的缩进值。

正式语法

<length-percentage> && hanging? && each-line?

where
<length-percentage> = <length> | <percentage>

例子

HTML

<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy
    nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>

CSS

p {
  text-indent: 5em;
  background: powderblue;
}

结果

规范

SpecificationStatusComment
CSS Text Module Level 3
text-indent
Working DraftAdded the hanging and each-line keywords
CSS Transitions
text-indent
Working DraftLists text-indent as animatable.
CSS Level 2 (Revision 1)
text-indent
RecommendationThe behavior with display: inline-block and anonymous block boxes have been explicitly defined.
CSS Level 1
text-indent
Recommendation
初始值0
适用元素block containers
是否是继承属性yes
Percentagesrefer to the width of the containing block
计算值the percentage as specified or the absolute length, plus any keywords as specified
Animation typea length, percentage or calc();

浏览器兼容性

BCD tables only load in the browser

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:133 次

字数:7101

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文