當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM Style borderBottomWidth屬性用法及代碼示例


borderBottomWidth 屬性用於設置或獲取元素的底部邊框寬度。

用法

以下是語法 -

設置 borderBottomWidth 屬性 -

object.style.borderBottomWidth = "thin|medium|thick|length|initial|inherit"

屬性值解釋如下 -

Sr.No值和描述
1thin
這指定了一個細邊框。
2medium
這指定了中邊框並且是默認值。
3thick
這指定了一個細邊框。
4length
這用於以長度單位指定邊框寬度。
5initial
用於將此屬性設置為初始值。
6inherit
繼承父屬性值

示例

讓我們看一下 borderBottomWidth 屬性的示例 -

<!DOCTYPE html>
<html>
<head>
<style>
   #DIV1{
      height:100px;
      width:200px;
      border:10px groove orange;
      padding:10px;
      border-bottom-width:30px;
   }
</style>
<script>
   function changeBottomWidth(){
      document.getElementById("DIV1").style.borderBottomWidth="1px";
      document.getElementById("Sample").innerHTML="The bottom border width is now
      decreased";
   }
</script>
</head>
<body>
<div id="DIV1">SOME SAMPLE TEXT</div>
<p>Change the above div bottom border width by clicking the below button</p>
<button onclick="changeBottomWidth()">Change Bottom Width</button>
<p id="Sample"></p>
</body>
</html>

輸出

這將產生以下輸出 -

單擊 “Change Bottom Width” 按鈕時 -

相關用法


注:本文由純淨天空篩選整理自AmitDiwan大神的英文原創作品 HTML DOM Style borderBottomWidth Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。