除了基本的长度和百分比值外,text-indent属性还支持一些特殊的值。比如,text-indent: inherit;表示继承父元素的text-indent属性值;text-indent: initial;表示将text-indent属性设置为其默认值。 接下来,我们来谈谈text-indent属性在实际应用中的一些注意事项。 text-indent属性只对块级元素有效,因此如果你想对行内元素...
text-indent: initial; text-indent: unset; 水平间距是相对于包含块级元素的内容框的左侧(或右侧,从右到左布局)的边缘。 Initial value 0 应用对象 block containers 是否可继承 yes 百分比值 refer to the width of the containing block 媒体 visual 计算值 the percentage as specified or the absol...
水平间距是相对于包含块级元素的内容框的左侧(或右侧,从右到左布局)的边缘。 Initial value 0 应用对象 block containers 是否可继承 yes 百分比值 refer to the width of the containing block 媒体 visual 计算值 the percentage as specified or the absolute length, plus any keywords as specified 动画类型 ...
relative to the containing block width */text-indent:15%;/* Keyword values */text-indent:5em each-line;text-indent:5em hanging;text-indent:5em hanging each-line;/* Global values */text-indent:inherit;text-indent:initial;text-indent:unset; 水平间距是相对于包含块级元素的内容框的左侧(或右侧...
正值表示向右缩进,负值表示向左缩进。 此外,也可以使用inherit关键字继承父元素的text-indent值,或使用initial关键字将text-indent重置为默认值。 注意:text-indent只会影响文本的第一行,而不会影响其他行。若需要设置整个段落或元素的所有行的缩进,可以结合使用text-indent和text-align属性。 0 赞 0 踩...
/* <percentage> value relative to the containing block width */ text-indent: 15%; /* Keyword values */ text-indent: 5em each-line; text-indent: 5em hanging; text-indent: 5em hanging each-line; /* Global values */ text-indent: inherit; text-indent: initial; text-indent: revert; ...
/* <percentage> value relative to the containing block width */ text-indent: 15%; /* Keyword values */ text-indent: 5em each-line; text-indent: 5em hanging; text-indent: 5em hanging each-line; /* Global values */ text-indent: inherit; text-indent: initial; text-indent: revert; ...
DOCTYPEhtml>Documenth3{text-indent: -999em;/* px 和 em 都是数值的单位。可以查找资料,学习二者的关系 */}看不见的文字 result resource [ 教程 ] www.w3school.com.cn/html/index.asp [ 手册 ] www.w3cschool.cn/html5_reference.html [ 规范 ] www.runoob.com/html/html5-syntax.html ...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Text Indent Example</title> <style> a { display: block; text-indent: 20px; /...
Initial: 0 Applies to: block-level elements Inherited: yes Percentage values: refer to parent element's width The CSS property "text-indent" specifies the indentation that appears before the first formatted line. An indentation is not inserted in the middle of an element that was broken by ano...