CSS font-family 属性
描述
font-family属性允许作者提供特定字体系列的逗号分隔列表,以及要在元素文本的呈现中使用的通用字体系列。
可能的值
- font-family - 逗号分隔的字体系列列表。
适用于
所有的HTML元素。
DOM语法
object.style.fontFamily = "georgia,garamond,serif";
示例
以下是使用该属性的示例:
<html>
<head>
</head>
<body>
<p style = "font-family:georgia,garamond,serif;">
This text is rendered in either georgia, garamond, or the
default serif font depending on which font you have at your system.
</p>
</body>
</html>
这将产生以下结果 –