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


HTML DOM Style borderBottomStyle属性用法及代码示例


borderBottomStyle 属性用于设置或获取元素底部边框的线条样式。

用法

以下是语法 -

设置 borderBottomStyle 属性

object.style.borderBottomStyle = value

属性值解释如下 -

Sr.No值和描述
1none
这是默认值,不定义边框。
2hidden
这与 "none" 相同,但仍会占用边界空间。它本质上是透明的,但仍然存在。
3dotted
这定义了一个虚线边框。
4dashed
这定义了一个虚线边框。
5solid
这定义了一个实心边框。
6double
这定义了双边框。
7groove
这定义了 3d 凹槽边界,与脊相反。
8ridge
这定义了 3D 脊状边界,与凹槽相反。
9inset
这定义了一个 3D 插入边框,效果看起来像是嵌入的。它产生了与开始相反的效果。
10outset
这定义了一个 3D 插入边框,效果看起来像是浮雕。它产生与插入相反的效果。
11initial
用于将此属性设置为初始值。
12inherit
继承父属性值

示例

让我们看一下 borderBottomStyle 属性的示例 -

<!DOCTYPE html>
<html>
<head>
<style>
   #DIV1{
      width:300px;
      height:100px;
      border-bottom:8px solid dodgerblue;
      border-bottom-style:groove;
   }
</style>
<script>
   function changeBottomStyle(){
      document.getElementById("DIV1").style.borderBottomStyle="dashed";
      document.getElementById("Sample").innerHTML="The bottom border style is now changed";
   }
</script>
</head>
<body>
<div id="DIV1">SOME SAMPLE TEXT</div>
<p>Change the div bottom border style size by clicking the below button</p>
<button onclick="changeBottomStyle()">Change Bottom Style</button>
<p id="Sample"></p>
</body>
</html>

输出

这将产生以下输出 -

单击 “Change Bottom Style” 按钮时 -

相关用法


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