HTML - DOM Style 对象 fontWeight 属性



HTML DOM Style 对象的 **fontWeight** 属性设置或返回字体粗细属性,该属性指定单词中字符的粗细。

语法

设置 fontWeight 属性
object.style.fontWeight= "normal | lighter | bold | bolder | value | initial | inherit";
获取 fontWeight 属性
object.style.fontWeight;

属性值

描述
normal 这是默认值,指定普通字体。
lighter 指定比普通字体更细的字体。
bold 指定粗体字体。
bolder 指定更粗的字体。
value 它接受 100-900 之间的值,其中 400 指定普通值,700 与粗体相同。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

它返回一个字符串值,表示字体的粗细。

HTML DOM Style 对象“fontWeight”属性示例

以下示例将不同的字体粗细值设置为 p 元素中的文本。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object fontWeight Property
    </title>
</head>
<body>
    <p>Click to set different font weight value.</p>
    <button onclick="fun()">Lighter</button>
    <button onclick="funTwo()">Bold</button>
    <button onclick="funThree()">Bolder</button>
    <button onclick="funFour()">Click</button>
    <p id="font">Welcome to Tutorials Point.</p>    
    <script>
        function fun() {
            document.getElementById("font")
                .style.fontWeight= "lighter";
        }
        function funTwo() {
            document.getElementById("font")
                .style.fontWeight= "bold";
        }
        function funThree() {
            document.getElementById("font")
                .style.fontWeight= "bolder";
        }
        function funFour() {
            document.getElementById("font")
                .style.fontWeight= "300";
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
fontWeight 是 2 是 12 是 1 是 1 是 3.5
html_dom_style_object_reference.htm
广告