JavaScript HTML DOM Style fontWeight 属性
-
fontWeight 属性
fontWeight属性设置或返回文本中应显示多么粗或细的字符。将p元素的字体粗细设置为“900”:
尝试一下document.getElementById("myP").style.fontWeight = "900";
-
浏览器支持
项 IE/Edge Chrome FireFox Safari Opera 属性 fontWeight 支持支持支持支持支持 -
语法
返回fontWeight属性:object.style.fontWeight设置fontWeight属性:object.style.fontWeight = "normal|lighter|bold|bolder|value|initial|inherit" -
-
技术细节
项目 描述 默认值: normal 返回值: 一个字符串,表示字体的粗体 CSS版本 CSS1 -
-