目录

style fontStyle 属性

示例

将元素的字体设置为"italic":

document.getElementById("demo").style.fontStyle = "italic";
亲自试一试 »

描述

fontStyle 属性设置或返回字体样式是正常、斜体还是倾斜。


浏览器支持

Property
fontStyle Yes Yes Yes Yes Yes

语法

返回 fontStyle 属性:

object.style.fontStyle

设置字体样式属性:

object.style.fontStyle = "normal|italic|oblique|initial|inherit"

属性值

Value Description
normal Font is normal. This is default
italic Font is in italic
oblique Font is in oblique
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 普通的
返回值: 一个字符串,表示元素中文本的字体样式
CSS版本 CSS1

更多示例

示例

可能值的演示:

var listValue = selectTag.options[selectTag.selectedIndex].text;
document.getElementById("demo").style.fontStyle = listValue;
亲自试一试 »

示例

返回元素的字体样式:

alert(document.getElementById("demo").style.fontStyle);
亲自试一试 »

相关页面

CSS教程:CSS 字体

CSS 参考:字体样式属性

HTML DOM 参考:字体属性