1. `fontfamily`:指定字体族名称。2. `fontsize`:指定字体大小。3. `fontweight`:指定字体粗细。4. `fontstyle`:指定字体样式(例如斜体)。5. `fontvariant`:指定字体变体(例如小型大写字母)。6. `lineheight`:指定行高。7. `textalign`:指定文本对齐方式。8. `textdecoration`:指定文本装饰(例如下划线)。9. `textindent`:指定首行缩进。10. `textshadow`:指定文本阴影。
以下是一个简单的例子,展示了如何使用CSS设置字体样式:
```htmlp { fontfamily: Arial sansserif; fontsize: 16px; fontweight: bold; fontstyle: italic; fontvariant: smallcaps; lineheight: 1.5; textalign: center; textdecoration: underline; textindent: 2em; textshadow: 2px 2px 2px 000000;}
This is a paragraph with various font styles applied.
在这个例子中,`` 元素的字体样式被设置为 Arial,大小为 16 像素,粗细为 bold,样式为 italic,变体为 smallcaps,行高为 1.5,文本对齐方式为 center,文本装饰为 underline,首行缩进为 2em,文本阴影为 2 像素。
HTML如何设置字体样式
1. 设置字体大小
```html