font
/* 设置字体大小 */
font-size: 24px;
/* 设置字体样式 */
font-style: italic; /*设置文字斜体*/
font-style: oblique; /*设置文字斜体*/
font-style: normal;/* 设置文字恢复正常状态 */
/* 设置文字的粗细 */
font-weight: bold;/* bolder 更粗的*/
/* 设置小型大写字母 */
font-variant: small-caps;
/* 设置文字字体 */
font-family: "宋体";
/* 设置字体颜色 */
color: green;
/* 设置字体间距 */
letter-spacing: 5px;
/* 设置行高,可以使文字居中对齐 */
line-height: 24px;
text
/* 加删除线 */
text-decoration: line-through;
/* 加顶线 */
text-decoration: overline;
/* 加下划线 */
text-decoration: underline;
/* 删除下划线,删除链接下划线 */
text-decoration: none;
/* 首字母大写 */
text-transform: capitalize;
/* 英文大写 */
text-transform: uppercase;
/* 英文小写 */
text-transform: lowercase;
/* 文字右对齐 */
text-align: right;
/* 文字左对齐 */
text-align: left;
/* 文字居中对齐*/
text-align: center;
/* 文字分散对齐 */
text-align: justify;
vertical
/* 设置上标字 */
vertical-align: sub;
/* 设置下标字 */
vertical-align: super;
/* 垂直向上对齐 */
vertical-align: top;
/* 垂直向下对齐*/
vertical-align: bottom;
/* 垂直居中对齐 */
vertical-align: middle;
/* 文字垂直向上对齐 */
vertical-align: text-top;
/* 文字垂直向下对齐 */
vertical-align: text-bottom;