HTML - DOM样式对象borderTopStyle属性



HTML DOM样式对象**borderTopStyle**属性设置或返回元素的顶部边框样式。

语法

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

属性值

描述
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样式对象'borderTopStyle'属性示例

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

更改顶部边框样式

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

<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Style Object borderTopStyle 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.borderTopStyle = "solid";
        }
    </script>
</body>
</html>

将顶部边框样式设置为'dotted'、'dashed'和'double'

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

<!DOCTYPE html>
<html lang="en">
<head>
    <Title>
        HTML DOM Style Object borderTopStyle 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.borderTopStyle = "dotted";
        }
        function dashed() {
            document.getElementById("border")
                .style.borderTopStyle = "dashed";
        }
        function double() {
            document.getElementById("border")
                .style.borderTopStyle = "double";
        }
    </script>
</body>
</html>

将顶部边框样式设置为'groove'和'ridge'

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

<!DOCTYPE html>
<html lang="en">
<head>
    <Title>
        HTML DOM Style Object borderTopStyle 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.borderTopStyle = "groove";
        }
        function ridge() {
            document.getElementById("border")
                .style.borderTopStyle = "ridge";
        }
    </script>
</body>
</html>

将顶部边框样式设置为'inset'和'outset'

以下示例将顶部边框样式设置为内嵌和凸出。

<!DOCTYPE html>
<html lang="en">
<head>
    <Title>
        HTML DOM Style Object borderTopStyle 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.borderTopStyle = "inset";
        }
        function outset() {
            document.getElementById("border")
                .style.borderTopStyle = "outset";
        }
    </script>
</body>
</html>

支持的浏览器

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