JavaScript HTML DOM Style fontStyle 属性
-
fontStyle 属性
fontStyle属性设置或返回字体样式是正常,斜体还是倾斜。将p元素的字体设置为“italic”:
尝试一下document.getElementById("myP").style.fontStyle = "italic";
-
浏览器支持
项 IE/Edge Chrome FireFox Safari Opera 属性 fontStyle 支持支持支持支持支持 -
语法
返回fontStyle属性:object.style.fontStyle设置fontStyle属性:object.style.fontStyle = "normal|italic|oblique|initial|inherit" -
-
技术细节
项目 描述 默认值: normal 返回值: 一个字符串,表示元素中文本的字体样式 CSS版本 CSS1 -
-