文本缩进(对p,div有效;对span无效)
p {text-indent: 5em;}
Tips:一般来说,可以为所有块级元素应用 text-indent,但无法将该属性应用于行内元素(span),图像之类的替换元素上也无法应用 text-indent 属性。不过,如果一个块级元素(比如段落)的首行中有一个图像,它会随该行的其余文本移动。
使用百分比
text-indent 可以使用所有长度单位,包括百分比值。
百分数要相对于缩进元素父元素的宽度。换句话说,如果将缩进值设置为 20%,所影响元素的第一行会缩进其父元素宽度的 20%。
在下例中,缩进值是父元素的 20%,即 100 个像素:
div {width: 500px;}p {text-indent: 20%;}this is a paragragh
继承
text-indent 属性可以继承
some text. some text. some text.this is a paragragh.
text-align ,对行内元素span无效。
Tips:将块级元素或表元素居中,要通过在这些元素上适当地设置左、右外边距来实现。
this is a paragragh.
基于父元素居中,对行内元素无效。
this is a paragragh.
Span加上display:block;
就能变为块状元素。
word-spacing
This is some text. This is some text.This is some text. This is some text.
与行内元素,块状元素都有效。
text-transform
noneuppercaselowercasecapitalize
不变动,全部大写,全部小写,首字母大写。
This Is An H1 Element
This is some text in a paragraph.This is some text in a paragraph.
This is some text in a paragraph.
对行内元素,块状元素都有效。
文本装饰
This is some text in a paragraph.
This is some text in a paragraph.This is some text in a paragraph.
This is some text in a paragraph.
This is some text in a paragraph.
blink是让文本闪烁,浏览器不一定支持。
white-space
对源文档中的空格、换行和 tab 字符的处理。
p {white-space: normal;}
上面的规则告诉浏览器按照平常的做法去处理:丢掉多余的空白符。如果给定这个值,换行字符(回车)会转换为空格,一行中多个空格的序列也会转换为一个空格。
This paragraph has many spaces in it.
注释:当 white-space 属性设置为 normal 时,会合并所有的空白符,并忽略换行符。
值 | 描述 |
---|---|
normal | 默认。空白会被浏览器忽略。 |
pre | 空白会被浏览器保留。其行为方式类似 HTML 中的 标签。 |
nowrap | 文本不会换行,文本会在在同一行上继续,直到遇到 标签为止。 |
pre-wrap | 保留空白符序列,但是正常地进行换行。 |
pre-line | 合并空白符序列,但是保留换行符。 |
inherit | 规定应该从父元素继承 white-space 属性的值。 |
This paragraph has a great many s p a c e s withits textual content, but their collapse will not preventline wrapping or line breaking.
注释:当 white-space 属性设置为 pre-line 时,浏览器会保留换行符,并允许自动换行,但是会合并空白符,这是与 pre-wrap 值的不同之处。
值 | 空白符 | 换行符 | 自动换行 |
---|---|---|---|
pre-line | 合并 | 保留 | 允许 |
normal | 合并 | 忽略 | 允许 |
nowrap | 合并 | 忽略 | 不允许 |
pre | 保留 | 保留 | 不允许 |
pre-wrap | 保留 | 保留 | 允许 |