当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Style borderStyle用法及代码示例


DOM Style borderStyle属性用于设置或返回元素的边框样式。

用法:

  • 获取borderStyle
    object.style.borderStyle
  • 设置borderStyle
    object.style.borderStyle = "none | hidden | dotted | dashed | 
    solid | double | groove | ridge | inset | outset | initial |
    inherit"

属性值:每个属性值都带有示例。


影响
none 没有创建边框。这是默认值。
hidden 视觉上与“无”相同,不同之处在于它有助于解决表格元素中的边界冲突。
dotted 点用作边界。
dashed 虚线用作边框。
solid 一条实线用作边框。
double 两行用作边框。
groove 显示3D带凹槽的边框。效果取决于border-color值。
ridge 显示3D脊状边框。效果取决于border-color值。
inset 显示3D插入边框。效果取决于border-color值。
outset 显示3D起始边框。效果取决于border-color值。
initial 将属性设置为其初始值。
inherit 将属性设置为从其父项继承。

下面的示例演示了这些值:

示例1:使用none值。

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <title> 
      DOM Style borderStyle Property 
    </title> 
    <style> 
        .item { 
            padding:10px; 
            border:15px solid green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 style="color:green"> 
      GeeksforGeeks 
    </h1> 
    <b> 
      DOM Style borderStyle Property 
    </b> 
    <p class="item"> 
        GeeksforGeeks is a computer science  
      portal with a huge variety of well written 
      and explained computer science and 
      programming articles, quizzes and 
      interview questions. 
    </p> 
    <button onclick="changeBorderStyle()"> 
      Change style 
    </button> 
  
    <script> 
        function changeBorderStyle() { 
            
            elem = document.querySelector('.item'); 
  
            // Setting the border style 
            elem.style.borderStyle = 'none'; 
        } 
    </script> 
</body> 
  
</html>

输出:
在单击按钮之前:
none-before

单击按钮后:
none-after

示例2:使用隐藏值。

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <title> 
      DOM Style borderStyle Property 
    </title> 
    <style> 
        .item { 
            padding:10px; 
            border:15px solid green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 style="color:green"> 
      GeeksforGeeks 
    </h1> 
    <b> 
      DOM Style borderStyle Property 
    </b> 
    <p class="item">   
      GeeksforGeeks is a computer science 
      portal with a huge variety of well  
      written and explained computer science 
      and programming articles, quizzes and 
      interview questions. 
    </p> 
    <button onclick="changeBorderStyle()"> 
        Change style 
    </button> 
  
    <script> 
        function changeBorderStyle() { 
            elem = document.querySelector('.item'); 
  
            // Setting the border style 
            elem.style.borderStyle = 'hidden'; 
        } 
    </script> 
</body> 
  
</html>

输出:
在单击按钮之前:
hidden-before

单击按钮后:
hidden-after

示例3:使用点分值。

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <title> 
      DOM Style borderStyle Property 
    </title> 
    <style> 
        .item { 
            padding:10px; 
            border:15px solid green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 style="color:green"> 
      GeeksforGeeks 
    </h1> 
    <b> 
      DOM Style borderStyle Property 
    </b> 
    <p class="item"> 
      GeeksforGeeks is a computer science 
      portal with a huge variety of well  
      written and explained computer science 
      and programming articles, quizzes  
      and interview questions. 
    </p> 
    <button onclick="changeBorderStyle()"> 
      Change style 
    </button> 
  
    <script> 
        function changeBorderStyle() { 
            elem = document.querySelector('.item'); 
  
            // Setting the border style 
            elem.style.borderStyle = 'dotted'; 
        } 
    </script> 
</body> 
  
</html>

输出:

在单击按钮之前:
dotted-before


单击按钮后:
dotted-after

示例4:使用虚线值。

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <title> 
      DOM Style borderStyle Property 
    </title> 
    <style> 
        .item { 
            padding:10px; 
            border:15px solid green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 style="color:green"> 
      GeeksforGeeks 
    </h1> 
    <b> 
      DOM Style borderStyle Property 
    </b> 
    <p class="item"> 
      GeeksforGeeks is a computer science  
      portal with a huge variety of well  
      written and explained computer  
      science and programming articles,  
      quizzes and interview questions. 
    </p> 
    <button onclick="changeBorderStyle()"> 
      Change style 
    </button> 
  
    <script> 
        function changeBorderStyle() { 
            elem = document.querySelector('.item'); 
  
            // Setting the border style 
            elem.style.borderStyle = 'dashed'; 
        } 
    </script> 
</body> 
  
</html>

输出:
在单击按钮之前:
dashed-before

单击按钮后:

dashed-after

示例5:使用固定值。

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <title> 
      DOM Style borderStyle Property 
    </title> 
    <style> 
        .item { 
            padding:10px; 
            border:15px dotted green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 style="color:green"> 
      GeeksforGeeks 
    </h1> 
    <b> 
      DOM Style borderStyle Property 
    </b> 
    <p class="item"> 
      GeeksforGeeks is a computer science portal 
      with a huge variety of well written and 
      explained computer science and programming 
      articles, quizzes and interview questions. 
    </p> 
    <button onclick="changeBorderStyle()"> 
      Change style 
    </button> 
  
    <script> 
        function changeBorderStyle() { 
            elem = document.querySelector('.item'); 
  
            // Setting the border style 
            elem.style.borderStyle = 'solid'; 
        } 
    </script> 
</body> 
  
</html>

输出:
在单击按钮之前:
solid-before

单击按钮后:

solid-after

示例6:使用double值。


<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <title> 
      DOM Style borderStyle Property 
    </title> 
    <style> 
        .item { 
            padding:10px; 
            border:15px solid green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 style="color:green"> 
      GeeksforGeeks 
    </h1> 
    <b> 
      DOM Style borderStyle Property 
    </b> 
    <p class="item"> 
      GeeksforGeeks is a computer science  
      portal with a huge variety of well  
      written and explained computer science 
      and programming articles, quizzes and 
      interview questions. 
    </p> 
    <button onclick="changeBorderStyle()"> 
      Change style 
    </button> 
  
    <script> 
        function changeBorderStyle() { 
            elem = document.querySelector('.item'); 
  
            // Setting the border style 
            elem.style.borderStyle = 'double'; 
        } 
    </script> 
</body> 
  
</html>

输出:

在单击按钮之前:

double-before

单击按钮后:

double-after

示例7:使用凹槽值。

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <title> 
      DOM Style borderStyle Property 
    </title> 
    <style> 
        .item { 
            padding:10px; 
            border:15px solid green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 style="color:green"> 
      GeeksforGeeks 
    </h1> 
    <b> 
      DOM Style borderStyle Property 
    </b> 
    <p class="item"> 
      GeeksforGeeks is a computer science portal 
      with a huge variety of well written and  
      explained computer science and programming 
      articles, quizzes and interview questions. 
    </p> 
    <button onclick="changeBorderStyle()"> 
      Change style 
    </button> 
  
    <script> 
        function changeBorderStyle() { 
            elem = document.querySelector('.item'); 
  
            // Setting the border style 
            elem.style.borderStyle = 'groove'; 
        } 
    </script> 
</body> 
  
</html>

输出:

在单击按钮之前:
groove-before

单击按钮后:

groove-after


示例8:使用山脊值。

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <title> 
      DOM Style borderStyle Property 
    </title> 
    <style> 
        .item { 
            padding:10px; 
            border:15px solid green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 style="color:green"> 
      GeeksforGeeks 
    </h1> 
    <b> 
      DOM Style borderStyle Property 
  </b> 
    <p class="item">  
      GeeksforGeeks is a computer science  
      portal with a huge variety of well  
      written and explained computer science 
      and programming articles, quizzes  
      and interview questions. 
    </p> 
    <button onclick="changeBorderStyle()"> 
      Change style 
    </button> 
  
    <script> 
        function changeBorderStyle() { 
            elem = document.querySelector('.item'); 
  
            // Setting the border style 
            elem.style.borderStyle = 'ridge'; 
        } 
    </script> 
</body> 
  
</html>

输出:

在单击按钮之前:

ridge-before

单击按钮后:

ridge-after

示例9:使用插入值。

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <title> 
        DOM Style borderStyle Property 
    </title> 
    <style> 
        .item { 
            padding:10px; 
            border:15px solid green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 style="color:green"> 
      GeeksforGeeks 
    </h1> 
    <b> 
      DOM Style borderStyle Property 
    </b> 
    <p class="item"> 
      GeeksforGeeks is a computer science  
      portal with a huge variety of well 
      written and explained computer science 
      and programming articles, quizzes and 
      interview questions. 
    </p> 
    <button onclick="changeBorderStyle()"> 
      Change style 
    </button> 
  
    <script> 
        function changeBorderStyle() { 
            elem = document.querySelector('.item'); 
  
            // Setting the border style 
            elem.style.borderStyle = 'inset'; 
        } 
    </script> 
</body> 
  
</html>

输出:

在单击按钮之前:

inset-before


单击按钮后:

inset-after

示例10:使用起始值。

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <title> 
      DOM Style borderStyle Property 
    </title> 
    <style> 
        .item { 
            padding:10px; 
            border:15px inset green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 style="color:green"> 
      GeeksforGeeks 
    </h1> 
    <b> 
      DOM Style borderStyle Property 
    </b> 
    <p class="item">   
      GeeksforGeeks is a computer science portal 
      with a huge variety of well written and  
      explained computer science and programming 
      articles, quizzes and interview questions. 
    </p> 
    <button onclick="changeBorderStyle()"> 
      Change style 
    </button> 
  
    <script> 
        function changeBorderStyle() { 
            elem = document.querySelector('.item'); 
  
            // Setting the border style 
            elem.style.borderStyle = 'outset'; 
        } 
    </script> 
</body> 
  
</html>

输出:

在单击按钮之前:

outset-before

单击按钮后:

outset-after

示例11:使用初始值。

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <title> 
      DOM Style borderStyle Property 
    </title> 
    <style> 
        .item { 
            padding:10px; 
            border:15px solid green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 style="color:green"> 
      GeeksforGeeks 
    </h1> 
    <b> 
      DOM Style borderStyle Property 
    </b> 
    <p class="item"> 
      GeeksforGeeks is a computer science  
      portal with a huge variety of well  
      written and explained computer science 
      and programming articles, quizzes and 
      interview questions. 
    </p> 
    <button onclick="changeBorderStyle()"> 
      Change style 
    </button> 
  
    <script> 
        function changeBorderStyle() { 
            elem = document.querySelector('.item'); 
  
            // Setting the border style 
            elem.style.borderStyle = 'initial'; 
        } 
    </script> 
</body> 
  
</html>

输出:


在单击按钮之前:

initial-before

单击按钮后:

initial-after

示例12:使用继承值。

<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <title> 
      DOM Style borderStyle Property 
    </title> 
    <style> 
        #parent { 
            border-style:dotted; 
            padding:10px; 
        } 
          
        .item { 
            padding:10px; 
            border:15px solid green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 style="color:green"> 
      GeeksforGeeks 
    </h1> 
    <b> 
      DOM Style borderStyle Property 
    </b> 
  
    <div id="parent"> 
        <p class="item">  
          GeeksforGeeks is a computer science portal 
          with a huge variety of well written and  
          explained computer science and programming 
          articles, quizzes and interview questions. 
        </p> 
    </div> 
  
    <button onclick="changeBorderStyle()"> 
      Change style 
    </button> 
  
    <script> 
        function changeBorderStyle() { 
            elem = document.querySelector('.item'); 
  
            // Setting the border style 
            elem.style.borderStyle = 'inherit'; 
        } 
    </script> 
</body> 
  
</html>

输出:

在单击按钮之前:

inherit-before

单击按钮后:

inherit-after

支持的浏览器:borderStyle属性支持的浏览器如下:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • 苹果Safari


相关用法


注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 HTML | DOM Style borderStyle Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。