Latest web development tutorials

HTML DOM Style font 屬性

Style 對象參考手冊 Style對象

定義和用法

font 屬性以速記形式設置或返回最多六個獨立的字體屬性。

通過該屬性,您可以設置/返回:

  • font-style
  • font-variant
  • font-weight
  • font-size
  • line-height
  • font-family

上述的屬性,也可以設置單獨的樣式屬性。 強烈建議使用單獨的屬性這樣有更好的可控性。

語法

設置font 屬性:

Object.style.font="[style variant weight size/lineHeight family] or [reserved word]"

返回font 屬性:

Object.style.font

提示: font屬性沒有默認值。

描述
style 设置字体样式。
variant 设置文本以小型大写字母字体显示。
weight 设置字体粗细。
size 设置字体尺寸。
lineHeight 设置行与行之间的距离。
family 设置字体系列。
caption 为控件定义字体(比如按钮、下拉列表等)。
icon 定义用于标注图标的字体。
menu 定义菜单中使用的字体。
message-box 定义对话框中使用的字体。
small-caption 定义小型控件中使用的字体。
status-bar 定义窗口状态栏中使用的字体。
inherit font 属性的值从父元素继承。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持font 屬性。

注意: IE7及更早的版本不支持"inherit"值。IE8 只有規定了!DOCTYPE 才支持"inherit"。 IE9 支持"inherit"。


實例

實例

更改文本的字體:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.com)</title>
<script>
function displayResult(){
    document.getElementById("p1").style.font="italic bold 20px arial,serif";
}
</script>
</head>
<body>

<p id="p1">这是一些文本。</p>
<br>
<button type="button" onclick="displayResult()">修改字体</button>

</body>
</html>

嘗試一下»


Style 對象參考手冊 Style對象