1.设置字体
font-family: Arial,"Microsoft Yahei";
Windows默认支持的字体:"Microsoft Yahei",SimSun,Arial,Tahoma,Verdana
设置字体的时候,先英后中,保证中英字体兼容到。尽量设置系统中自带的字体
2.设置字体大小
font-size: 21px;
默认值 medium,属性值可以为px,em。标题是特殊的,需要单独设置大小
3.设置字体的粗细
font-weight: 900;
默认值:normal,粗体字体:bold,更粗的字体:bolder,细的字体:lighter,由细到粗:100~900
4.设置字体的样式
font-style: italic;
默认值:normal,italic:斜体,oblique:倾斜
5.设置字体的行高
line-height: 20px;
默认值:normal,属性值可以为:px,百分比% 设置为当前的字体的百分之几,数值 2 设置为当前字体的2倍大小
6.设置字体的复合属性
font:font-style font-weight font-size/line-height font-family;
font:字体的类型 字体的粗细 字体的大小/字体的行高 设置字体
1.设置文本颜色
color: red; color: rgb(99,128,20); /*第三个参数是设置透明度*/ color: rgba(99,128,20,0.5);
2.文本对齐
text-align: center;
属性:左对齐 right 默认值,居中对齐 center,右对齐 right
3.文本装饰
text-decoration: underline;
默认值:none,underline:下划线,overline:上划线,line-through:删除线
4.文本缩进
text-indent: 2em;
属性值:px,em
标签:默认值,字体,设置,对齐,font,文本属性,属性 From: https://www.cnblogs.com/ErenYeager/p/17025181.html