/* 设置字体族 */ font-family: "Microsoft Yahei", sans-serif; /* 设置字体大小 */ font-size: 14px; /* 设置字体样式 */ font-style: italic; /* 设置字体粗细 */ font-weight: bold; /* 设置字体颜色 */ color: #333; /* 设置行高 */ line-height: 1.5; /* 设置字间距 */ letter-spacing: 1px; /* 设置文本对齐 */ text-align: center; /* 设置首行缩进 */ text-indent: 2em; /* 设置文本装饰 */ text-decoration: underline; /* 设置文字阴影 */ text-shadow: 1px 1px #ccc;
以上是常用的字体设置属性,可以根据需要进行调整,优化页面效果。