1. 字体系列 (font-family):
body {
font-family: "Helvetica", sans-serif; /* 设置字体系列,可以指定多个备选字体 */
}
2. 字体大小 (font-size):
h1 {
font-size: 24px; /* 设置字体大小,可以使用像素、em、rem等单位 */
}
3. 字体粗细 (font-weight):
p {
font-weight: bold; /* 设置字体粗细,可选值:normal, bold, bolder, lighter,或者使用数值表示粗细程度 */
}
4. 字体样式 (font-style):
em {
font-style: italic; /* 设置字体样式,可选值:normal, italic, oblique */
}
5. 字体变体 (font-variant):
span {
font-variant: small-caps; /* 使用小型大写字母显示文本 */
}
6. 字体颜色 (color):
p {
color: #333; /* 设置字体颜色 */
}
7. 字体拉伸 (font-stretch):
p {
font-stretch: expanded; /* 设置字体拉伸效果,可选值:normal, condensed, expanded */
}
8. 字体行高 (line-height):
p {
line-height: 1.5; /* 设置行高,相对于字体大小的倍数 */
}
9. 字体变体 (font-variant):
p {
font-variant: small-caps; /* 使用小型大写字母显示文本 */
}
这些属性可以根据你的具体需求进行组合使用,以实现所需的字体效果。
转载请注明出处:http://www.pingtaimeng.com/article/detail/12523/CSS