Latest web development tutorials

atributos de fonte HTML DOM Estilo

Estilo Object Reference estilo Objects

Definição e Uso

propriedade estenográfica da fonte para definir ou retornar até seis atributos de fonte separados.

Com esta propriedade, você pode definir / retorno:

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

As propriedades acima referidas podem ser proporcionados atributos de estilo separadas. recomenda o uso de um atributo separado a controlabilidade como melhor.

gramática

Definir propriedades da fonte:

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

atributos de fonte de volta:

Object.style.font

Dica: font propriedade não tem valor padrão.

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


Suporte a navegadores

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Todos os principais navegadores suportam atributos de fonte.

Nota: IE7 e versões anteriores não suportam o valor "herdar".IE8 só fornece! DOCTYPE suportado "herdar". suporte IE9 "herdar".


Exemplos

Exemplos

Alterar a fonte do texto:

<!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>

tente »


Estilo Object Reference estilo Objects