示例:
/* 将段落首行缩进为2个em单位 */
p {
text-indent: 2em;
}
/* 将段落首行缩进为20像素 */
div {
text-indent: 20px;
}
/* 将段落首行缩进为文本宽度的20% */
article {
text-indent: 20%;
}
这些样式规则将影响相应元素内文本的缩进。text-indent 通常用于调整段落的样式,使得段落的首行或整体文本在块框内的位置发生变化。
转载请注明出处:http://www.zyzy.cn/article/detail/4261/CSS