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


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


borderBottom 屬性用於設置或獲取底部邊框屬性。 border-bottom 屬性是 border-bottom-width、border-bottom-style、border-bottom-color 的簡寫。

用法

以下是語法 -

設置 borderBottom 屬性 -

object.style.borderBottom = "width style color|initial|inherit"

以下是上述屬性值 -

Sr.No參數及說明
1Width
用於設置下邊框寬度。
2Style
用於設置底部邊框樣式。
3Color
用於設置底部邊框顏色。
4Initial
用於將此屬性設置為初始值。
5Inherit
繼承父屬性值。

示例

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

<!DOCTYPE html>
<html>
<head>
<style>
   #IMG1 {
      border-bottom:7px solid orange;
      box-shadow:2px 2px 4px 1px seagreen;
   }
</style>
<script>
   function changeBorder(){
      document.getElementById("IMG1").style.borderBottom="10px dotted pink";
      document.getElementById("Sample").innerHTML="The bottom border for the image is now changed";
   }
</script>
</head>
<body>
<h2>Kotlin Tutorial</h2>
<img id="IMG1" src="https://www.tutorialspoint.com/kotlin/images/kotlin.jpg">
<p>Change the above image below border by clicking the below button</p>
<button onclick="changeBorder()">Change Bottom Border</button>
<p id="Sample"></p>
</body>
</html>

輸出

這將產生以下輸出 -

單擊 “Change Bottom Border” 按鈕時 -

相關用法


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