1)文字大小 ( font-size )
/* 设置文字大小为24个像素 */
font-size: 24px;
2)字体粗细 ( font-weight )
/* 字体粗细在100-900之间可以进行调整 */
/* 字体加粗 */
font-weight: bolder; /* 或 font-weight:700; */
/* 正常字体 */
font-weight: normal; /* 或 font-weight:400; */
3)颜色 ( color )
/* 1.颜色关键字指定,设置字体颜色为红色 */
color: red;
/* 2.rgb表示,rgb(r,g,b)表示红绿蓝三原色取值 0~255 */
color: rgb(0, 255, 191);
/* 3.rgba表示,rgba(r,g,b,a),a表示透明度,取值在0~1之间 */
color: rgba(23, 66, 128, 0.8);
4)行高 ( line-height )
/* 1.设置行高为50像素 */
line-height: 50px;
/* 2.设置行高为原先的2倍 */
line-height: 2;
5)对齐方式 ( text-align )
text-align 用来对 行内元素、行内块元素 进行对齐/* 1.居中对齐 */
text-align: center
/* 2.左对齐 */
text-align: left;
/* 3.右对齐 */
text-align: right;
6)字体倾斜 ( font-style )
/* 字体倾斜 */
font-style: italic;
/* 字体不倾斜 */
font-style: normal;
7)字体家族 ( font-family )
/* 设置字体为楷体 */font-family: '楷体';
8)修饰线 ( text-decoration )
/* 1.下划线 */
text-decoration: underline
/* 2.删除线 */
text-decoration: line-through
/* 3.上划线 */
text-decoration: overline
/* 4.无修饰 */
text-decoration: none