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


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


HTML DOM borderImageOutset 屬性用於設置或返回背景圖像區域擴展元素邊框框的值。通過使用頂部、左側、右側和底部的值,我們可以指定背景圖像將從元素的相應邊框延伸多少。

用法

以下是語法 -

設置 borderImageOutset 屬性 -

object.style.borderImageOutset = "length|number|initial|inherit"

屬性值解釋如下 -

描述
Length用於定義圖像將從邊界框延伸多遠。默認值設置為 0,即它不會超出邊界框。
Number用於定義 border-width 倍數的數值。
Initial用於將此屬性設置為初始值。
Inherit繼承父屬性值

示例

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

<!DOCTYPE html>
<html>
<head>
<style>
   #P1 {
      border:20px solid transparent;
      margin:20px;
      border-image:url("https://www.tutorialspoint.com/tensorflow/images/tensorflow.jpg") 30
      round;
      border-image-outset:5px;
      background-color:lightgreen;
   }
</style>
<script>
   function changeBottomOutset(){
      document.getElementById("P1").style.borderImageOutset="20px";
      document.getElementById("Sample").innerHTML="The border image outset is now
      increased";
   }
</script>
</head>
<body>
<h2>Demo Heading</h2>
<p id="P1"> This is a sample paragraph containing some text. This paragraph is created only for the sake of this example</p>
<p>Change the above div border image outset by clicking the below button</p>
<button onclick="changeBottomOutset()">Change Bottom Outset</button>
<p id="Sample"></p>
</body>
</html>

輸出

這將產生以下輸出 -

單擊 “Change Border Outset” 按鈕時 -

相關用法


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