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怎么设置字体款式
```html
下一篇: css字体暗影, 什么是CSS字体暗影?