HTML - DOM Style 对象 borderLeftStyle 属性



HTML DOM Style 对象**borderLeftStyle**属性设置或返回元素的左边框样式。

语法

以下是获取或设置 borderLeftStyle 属性的语法。

设置 borderLeftStyle 属性
object.style.borderLeftStyle= "none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outset | initial | inherit";
获取 borderLeftStyle 属性
object.style.borderLeftStyle;

属性值

描述
none 这是默认值,表示没有边框。
hidden 它与“none”相同,但它创建了一个透明或不可见的边框,并占用由边框宽度指定的空间。它有助于解决表格元素中的边框冲突。
dotted 它指定一个点状边框。
dashed 它指定一个虚线边框。
solid 它指定一个实线边框。
double 它定义一个双线边框,其中使用两条线作为边框,其宽度与 borderWidth 指定的宽度相同。
groove 它指定一个 3D 凹槽边框,其效果取决于 border-color 值。
ridge 它指定一个 3D 凹槽边框,其效果取决于 border-color 值。
inset 它指定一个 3D 内嵌边框,其效果取决于 border-color 值。
outset 它指定一个 3D 外凸边框,其效果取决于 border-color 值。
initial 它用于将此属性设置为其默认值。
inherit 它用于继承其父元素的属性。

返回值

它返回一个字符串值,表示元素的左边框样式。

HTML DOM Style 对象“borderLeftStyle”属性的示例

以下示例说明了不同的左边框样式值。

更改左边框样式

在以下示例中,我们将左边框样式从点状更改为实线。

<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Style Object borderLeftStyle Property
    </title>
    <style>
        #border {
            border: 2px dotted;
        }
    </style>
</head>
<body>
    <p>
        Click to change the border style.
    </p>
    <button onclick="fun()">Change Border</button>
    <section id="border">
        Welcome to Tutorials Point...
    </section>
    <script>
        function fun() {
            document.getElementById("border")
                .style.borderLeftStyle = "solid";
        }
    </script>
</body>
</html>

将左边框样式设置为“dotted”、“dashed”和“double”

以下示例将左边框样式设置为点状、虚线和双线。

<!DOCTYPE html>
<html lang="en">
<head>
    <Title>
        HTML DOM Style Object borderLeftStyle Property
    </Title>
    <style>
        h1 {
            border: 2px solid black;
        }
    </style>
</head>
<body>
    <p>Click to change the border style.</p>
    <button onclick="dotted()">Dotted</button>
    <button onclick="dashed()">Dashed</button>
    <button onclick="double()">Double</button>
    <h1 id="border">Welcome to Tutorials Point...</h1>
    <script>
        function dotted() {
            document.getElementById("border")
                .style.borderLeftStyle = "dotted";
        }
        function dashed() {
            document.getElementById("border")
                .style.borderLeftStyle = "dashed";
        }
        function double() {
            document.getElementById("border")
                .style.borderLeftStyle = "double";
        }
    </script>
</body>
</html>

将左边框样式设置为“groove”和“ridge”

以下示例将左边框样式设置为凹槽和脊状。

<!DOCTYPE html>
<html lang="en">
<head>
    <Title>
        HTML DOM Style Object borderLeftStyle Property
    </Title>
    <style>
        h1 {
            border: 2px solid aqua;
        }
    </style>
</head>
<body>
    <p>
        Click to change the border style.
    </p>
    <button onclick="groove()">Groove</button>
    <button onclick="ridge()">Ridge</button>
    <h1 id="border">
        Welcome to Tutorials Point...
    </h1>
    <script>
        function groove() {
            document.getElementById("border")
                .style.borderLeftStyle = "groove";
        }
        function ridge() {
            document.getElementById("border")
                .style.borderLeftStyle = "ridge";
        }
    </script>
</body>
</html>

将左边框样式设置为“inset”和“outset”

以下示例将左边框样式设置为内嵌和外凸。

<!DOCTYPE html>
<html lang="en">
<head>
    <Title>
        HTML DOM Style Object borderLeftStyle Property
    </Title>
    <style>
        h1 {
            border: 2px solid aqua;
        }
    </style>
</head>
<body>
    <p>
        Click to change the border style.
    </p>
    <button onclick="inset()">Inset</button>
    <button onclick="outset()">Outset</button>
    <h1 id="border">
        Welcome to Tutorials Point...
    </h1>
    <script>
        function inset() {
            document.getElementById("border")
                .style.borderLeftStyle = "inset";
        }
        function outset() {
            document.getElementById("border")
                .style.borderLeftStyle = "outset";
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
borderLeftStyle 是 1 是 12 是 1 是 1 是 9.2
html_dom_style_object_reference.htm
广告