text-indent : 值 <length> | <percentage> | inherit
初始值: 0
应用于: 块级元素
所有元素的第一行都可以缩进一个给定长度
text-align : 值: left | center | right | justify | inherit
初始值: 用户代理定义的值
应用于: 块级元素
text-align 只会控制内部内容 不会控制元素的对齐
line-height : 值 <length> | <percentage> | <number> | normal | inherit
初始值:normal
应用于: 所有元素
继承性: 有
line-height的计算机减去font-size的计算值 这个就是行间距,然后行间距再除2,将行间距的一半分辨应用到内容区的顶部和底部
word-spacing 值: <length> | normal | inherit
初始值: normal
应用于: 所有元素
用于增加到字之间的标准间隔
text-transform 值: uppercase | lowercase | capitalize | none | inherit
初始值: none
应用于: 所有元素
字幕的大小写转换
text-decoration 值: none | [ underline | overline | line-through | blink | inherit]
初始值: none
应用于: 所有元素
font-family
字体的系列 指定属性
body{
font-family: sans-serif;
}
font-size
设置文本的大小 字体即可以用Px 也可以用em相对值来表示
推荐使用em尺寸单位,1em等于当前的字体尺寸。
font-weight
设置文本的粗细
关键字100-900为字体指定了9级加粗度, 100对应最细的字体变形,900对应最粗的字体编写,数字400等价于normal,而700等价于bold。
网友评论